-
Notifications
You must be signed in to change notification settings - Fork 8
/
about.html
97 lines (92 loc) · 3.89 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - DevSoc</title>
<link rel="icon" type="image/x-icon" href="assets/Dev Soc Logo.png">
<link rel="stylesheet" href="./css/about.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="container">
<div class="logo">
<a href="#">DEVSOC</a>
</div>
<div class="hamburger" id="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<ul class="nav-links" id="nav-links">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact Us</a></li>
<li class="nav-item"><a class="nav-link" href="./events.html">Events</a></li>
</ul>
</div>
</nav>
<!-- About Section -->
<section class="about-section">
<div class="left-panel">
<div style="font-size: 40px;">
SIZE X SIZE
</div>
</div>
<div class="right-panel">
<div class="content">
<div class="top-section">
<h1>About Us</h1>
</div>
<div class="bottom-section" style="padding:2px; margin-top: 10px; text-align: justify; font-size: 19px;">
<hr style="background-color:#FF5361; height: 4px; border: 0; position: relative; bottom: 10px;">
<p>Vortex was born out of a simple idea – to create meaningful and impactful tech solutions. With our roots in bioinformatics, we are a team of passionate developers and designers who aim to transform the way people interact with technology. Our mission is to solve everyday challenges with elegant, user-friendly designs and efficient systems.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer-section">
<div class="footer-container">
<div class="footer-links">
<h5>Quick Links</h5>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-contact">
<h5>Contact Us</h5>
<ul>
<li><a href="mailto:[email protected]">[email protected]</a></li>
<li>+1 (123) 456-7890</li>
<li>123 Tech Avenue, City, Country</li>
</ul>
</div>
<div class="footer-social">
<h5>Follow Us</h5>
<div class="social-icons">
<a href="#"><i class="bi bi-facebook"></i></a>
<a href="#"><i class="bi bi-twitter"></i></a>
<a href="#"><i class="bi bi-instagram"></i></a>
<a href="#"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<p>© 2024 Vortex. All Rights Reserved.</p>
</div>
</footer>
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css">
<!-- JavaScript for Navbar Toggle -->
<script>
const hamburger = document.getElementById('hamburger');
const navLinks = document.getElementById('nav-links');
hamburger.addEventListener('click', () => {
navLinks.classList.toggle('show');
});
</script>
</body>
</html>