-
Notifications
You must be signed in to change notification settings - Fork 5
/
about.html
121 lines (111 loc) · 5.96 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<!-- Stylesheet -->
<link rel="stylesheet" href="./css/styles.css">
<!-- Favicon -->
<link rel="icon" href="images/Home/Funtech-favicon.png">
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Archivo+Black&family=Black+Ops+One&family=Kanit:wght@500&family=Lora&family=Montserrat&family=Tektur&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/2397a0c019.js" crossorigin="anonymous"></script>
</head>
<body class="about-body">
<div class="cover-up">
<div class="cursor"></div>
<!-- Header/Navbar -->
<nav class="navbar">
<div class="website-title">
<img class="website-logo" src="images/Home/Funtech-logo.png" alt="Website-Logo" >
<h1 class="heading neon-text" data-text="FunTech">FUNTECH</h1>
</div>
<ul class="features">
<li class="feature-item"><a class="nav-item" href="index.html">Home</a></li>
<li class="feature-item"><a class="nav-item" href="about.html">About</a></li>
<!-- <li><a class="nav-item" href="#">Events</a></li> -->
<li class="feature-item dropdown">
<a href="events.html" class="nav-item">Events</a>
<!-- <div class="dropdown-content">
<ul>
<li class="dropdown-list"><a class="dropdown-item" href="#">Past Events</a></li>
<li class="dropdown-list"><a class="dropdown-item" href="#">Future Events</a></li>
</ul>
</div> -->
</li>
<li class="feature-item"><a class="nav-item" href="register.html">Register</a></li>
<li class="feature-item"><a class="nav-item" href="members.html">Members</a></li>
<li class="feature-item"><a class="nav-item" href="#Contact">Contact</a></li>
</ul>
<div class="navbar-btn">
<img class="nav-icon menu" src="images/Home/Hamburger-menu.png" alt="hamburger" >
<img class="nav-icon close" src="images/Home/Cross.png" alt="hamburger" >
</div>
</nav>
<!-- About Page -->
<section class="container">
<div class="about-container">
<div class="logo">
<img src="/images/About/about.png" alt="FunTech Logo">
</div>
<div class="info">
<h1 class="welcome">Welcome to FunTech</h1>
<p class="describe"> FunTech welcomes you to the world of technology aligned with creativity .</p>
<p class="describe">This is a college club dedicated to inspiring and empowering students through technology and fun activities.We believe in creating a vibrant community that fosters innovation, learning, and enjoyment.</p>
<p class="describe"> FunTech is not just a club, it's a community where you can meet and connect with other club members.</p>
<p class="describe"> Share your ideas,collaborate on projects and build lifelong friendships.</p>
<p class="describe">Join us on our exciting journey as we explore the world of technology together!</p>
<p class="describe"> Checkout our event page ,so never miss out on any exciting activities and opportunities .</p>
</div>
</div>
</section>
<!-- Contact -->
<footer id="Contact" class="footer">
<section class="container">
<div class="row">
<div class="footer-col">
<h4>Contact Us</h4>
<ul class="footer-list">
<li><a href="https://www.instagram.com/funtech_club.mits?igsh=dDRicmw3aG15aDdh">Instagram</a></li>
<li><a href="https://www.linkedin.com/in/funtech-mits-gwalior-27b9622b0">LinkedIn</a></li>
<li><a href="https://github.com/its-AkshatJain/Funtech-Club-Website">GitHub</a></li>
<li><a href="https://x.com/funtechmits?t=pHn6w9fW1RnfgjmO0rHObw&s=08">X (Twitter)</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Get Help</h4>
<ul class="footer-list">
<li><a href="tel:+919425705578">Call Us</a></li>
<li><a href="mailto:funtechclub4@gmail.com">Mail Us</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Help Us Serve You Better</h4>
<ul class="footer-list">
<li><a href="https://forms.gle/o8QmkjsChNz8nVyMA">Suggestion</a></li>
<li><a href="https://forms.gle/Bfy6cxMsRUCFokmNA">Feedback</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Follow us</h4>
<div class="social-links">
<a href="https://www.instagram.com/funtech_club.mits?igsh=dDRicmw3aG15aDdh"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/funtech-mits-gwalior-27b9622b0"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/its-AkshatJain/Funtech-Club-Website"><i class="fa-brands fa-github"></i></i></a>
<a href="https://x.com/funtechmits?t=pHn6w9fW1RnfgjmO0rHObw&s=08"><i class="fa-brands fa-x-twitter"></i></a>
</div>
</div>
</div>
<br>
<hr>
<p class="copyright">© Funtech Club</p>
</section>
</footer>
</div>
<script src="src/index.js" charset="utf-8"></script>
</body>
</html>