-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (65 loc) · 2.1 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" />
<!--Font Awesome Code-->
<script src="https://kit.fontawesome.com/ffe228bcdf.js" crossorigin="anonymous"></script>
<title>WEB222 Store</title>
</head>
<body>
<header>
<h1><i class="fas fa-compact-disc"></i>Lowest Poly</h1>
<!--Description-->
<h4>
The destination for low poly gaming.<br />
Consoles and peripherals from the fifth generation of gaming.<br />
All prices exclude shipping.<br />
More products coming soon...
<!--To contact page-->
<h2><a href="contact.html">Contact us</a></h2>
<ul id="menu">
<li>
<button id="N64">N64</button>
</li>
<li>
<button id="PSX">PSX</button>
</li>
<li>
<button id="Saturn">Sega Saturn</button>
</li>
<li>
<button id="Clear">Reset Filters</button>
</li>
</ul>
</h4>
</header>
<!--product table-->
<h2>Available Now</h2>
<div class="grid"></div>
<footer>
<hr>
<!--Subscription-->
<h2>Subscribe to our newsletter</h2>
<form action="https://formspree.io/f/mknpqwgl" method="POST">
<input id="email" type="email" name="email" autocomplete="email" required placeholder="[email protected]">
<input id="submit" type="submit" value="Send">
</form>
<p style="margin-top: 2em;">
Lowest Poly © Ali Abbas<br />
Images provided by Wikimedia Commons and are in public domain.<br />
Images also resized with <a href="https://resizeimage.net/">ResizeImage.net</a>.<br />
Background provided by <a href="https://patterncooler.com/">PatternCooler</a>. Fonts
provided by Google Fonts.<br />
Logo and social symbols provided by Font Awesome.
</p>
<!--Social buttons-->
<ul id="menu" style="font-size: xx-large; margin-bottom: 2em;">
<li><i class="fab fa-twitter"></i></li>
<li><i class="fab fa-instagram"></i></li>
<li><i class="fab fa-tumblr"></i></li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>