-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (124 loc) · 5.57 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
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
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>T-shirt Factory</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body>
<div id="container">
<header id="header">
<div id="logo">
<img id="header-img" src="https://cdn-icons-png.flaticon.com/512/67/67211.png" alt="t-shirt logo">
</div>
<nav id="nav-bar">
<ul>
<li>
<a class="nav-link" href="#features">Features</a>
</li>
<li>
<a class="nav-link" href="#video">How It Works</a>
</li>
<li>
<a class="nav-link" href="#pricing">Pricing</a>
</li>
</ul>
</nav>
</header>
<div id="wrapped">
<section id="contact">
<h2>Send your email to contact</h2>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input type="email" name="email" id="email" placeholder="Enter your email" required>
<input id="submit" class="btn" type="submit" value="SEND">
</form>
</section>
<section id="features">
<div class="features">
<div class="icon">
<i class="fa fa-3x fa-fire"></i>
</div>
<div class="features-text">
<h2 class="features-h2">Premium Quality</h2>
<p class="features-p">We use best quality materials. Our items made by qualified equipment, this will increase the longevity of your purchase.</p>
</div>
</div>
<div class="features">
<div class="icon">
<i class="fa fa-3x fa-truck"></i>
</div>
<div class="features-text">
<h2 class="features-h2">Fast Shipping</h2>
<p class="features-p">We make sure you recieve your purchase as soon as we have finished making it. We also provide free returns if you are not satisfied.</p>
</div>
</div>
<div class="features">
<div class="icon">
<i class="fa fa-3x fa-battery-full" aria-hidden="true"></i>
</div>
<div class="features-text">
<h2 class="features-h2">Quality Assurance</h2>
<p class="features-p">For every purchase you make, we will ensure there are no damages or faults and we will check and test the pitch of your garment.</p>
</div>
</div>
</section>
<section id="video-section">
<iframe id="video" height="315" src="https://www.youtube.com/embed/pN2yLAtMDjg?si=gaQybZJfUFQ63BkH" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</section>
<section id="pricing">
<div class="pricing">
<div class="pricing-header">T-shirt</div>
<h2 class="amount">$20</h2>
<ol>
<li>Any size</li>
<li>Any color</li>
<li>Any style</li>
</ol>
<button id="t-shirt-btn" class="pr">Select</button>
</div>
<div class="pricing">
<div class="pricing-header">Hoodie</div>
<h2 class="amount">$40</h2>
<ol>
<li>Any size</li>
<li>Any color</li>
<li>Any style</li>
</ol>
<button id="hoodie-btn" class="pr">Select</button>
</div>
<div class="pricing">
<div class="pricing-header">Pants</div>
<h2 class="amount">$30</h2>
<ol>
<li>Any size</li>
<li>Any color</li>
<li>Any style</li>
</ol>
<button id="pants-btn" class="pr">Select</button>
</div>
</section>
<div id="shopping-cart" style="visibility: hidden;">
<h2 class="amount">Shopping Cart</h2>
<div id="cart-content"></div>
<br>
<div id="total-price"></div>
<br>
<button id="purch-btn" class="pr">Purchase</button>
<br>
<button id="clear-btn" class="pr" style="background-color: lightslategray;">Clear</button>
</div>
<footer>
<ul>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Contact</a></li>
</ul>
<span>Copyright 2016, Original Trombones</span>
</footer>
</div>
</div>
<script src="script.js"></script>
</body>
</html>