-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.html
76 lines (72 loc) · 2.99 KB
/
store.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MSUAS TechZone Club</title>
<link rel="stylesheet" href="store.css">
</head>
<body>
<!--====== Header ======-->
<header>
<div class="logo">
<a href="index.html">
<img class="logo" src="images/test2.png" alt="Club Logo" width="90px" height="auto">
</a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#events">Events</a></li>
<li><a href="index.html#projects">Projects</a></li>
<li><a href="index.html#team">Team</a></li>
<li><a href="index.html#gallery">Gallery</a></li>
<li><a href="#">Store</a></li>
<li><a href="/resouces.html">Resources</a></li>
<li><a href="index.html#contact">Contact</a></li>
<a href="https://forms.gle/HP96YjrMbTAWDTiV8" target="_blank" class="join-us">Join Us!</a>
<!--<li><a><img class="admin-login" src="images/profile-user.png" alt="Admin Login" width="35px" height="auto"></a></li>-->
</ul>
</nav>
</header>
<!--====== End of Header ======-->
<!--====== Store Section ======-->
<section id="resources">
<div class="section-content">
<h2 class="section-heading">Our Store</h2>
<p class="store-heading-p">
One way shop to buy all your tech stuff🛒
</p>
<p class="still-in-devpmt">
⚠️Section still under development!⚒️
</p>
</div>
</section>
<!-- End of Store Section -->
<!--====== Footer Section ======-->
<footer id="footer">
<a class="social-links" href="facebook-link" target="_blank" >
<img class="socials" src="images/facebook.png" alt="Facebook Logo" width="25px" height="auto">
</a>
<a class="social-links" href="twitter-link" target="_blank">
<img class="socials" src="images/twitter.png" alt="Twitter Logo" width="25px" height="auto">
</a>
<a class="social-links" href="instagram-link" target="_blank">
<img class="socials" src="images/instagram.png" alt="Instagram Logo" width="25px" height="auto">
</a>
<a class="social-links" href="youtube-link" target="_blank">
<img class="socials" src="images/youtube.png" alt="YouTube Logo" width="25px" height="auto">
</a>
<a class="social-links" href="whatsapp-link" target="_blank">
<img class="socials" src="images/whatsapp.png" alt="WhatsApp Logo" width="25px" height="auto">
</a>
<a class="social-links" href="github-link" target="_blank">
<img class="socials" src="images/github.png" alt="GitHub Logo" width="25px" height="auto">
</a>
<p>© 2024 TechZone Club. All rights reserved.</p>
</footer>
<!--====== End of Footer ======-->
<script src="script.js"></script>
</body>
</html>