This repository has been archived by the owner on Jul 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (145 loc) · 4.17 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Fork Me! FCC: Test Suite Template</title>
<link rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc"
crossorigin="anonymous"
/>
</head>
<body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<div>
<header id="header">
<img
id="header-img"
src="https://s3.amazonaws.com/freecodecamp/original_trombones.png"
alt=""
/>
<nav id="nav-bar">
<ul>
<li>
<a class="nav-link" href="#features"> Features</a>
</li>
<li><a class="nav-link" href="#how-it-works">How it work</a></li>
<li><a class="nav-link" href="#pricing">pricing</a></li>
</ul>
</nav>
</header>
</div>
<section id="hero">
<h2>Handcrafted, home-made masterpieces</h2>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input
name="email"
id="email"
type="email"
placeholder="Type your email"
/>
<input type="submit" id="submit" value="GET STARTED" />
</form>
</section>
<div class="container">
<section id="features">
<div class="grid">
<div class="icon">
<i class="fa fa-fire" aria-hidden="true"></i>
</div>
<div class="dic">
<h2>
Premium Materials
</h2>
<p>
Our trombones use the shiniest brass which is sourced locally.
This will increase the longevity of your purchase.
</p>
</div>
</div>
<div class="grid">
<div class="icon">
<i class="fas fa-truck"></i>
</div>
<div class="dic">
<h2>
Fast Shipping
</h2>
<p>
We make sure you recieve your trombone as soon as we have finished
making it. We also provide free returns if you are not satisfied.
</p>
</div>
</div>
<div class="grid">
<div class="icon">
<i class="fas fa-battery-full"></i>
</div>
<div class="dic">
<h2>
Quality Assurance
</h2>
<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 instrument.
</p>
</div>
</div>
</section>
<section id="how-it-works">
<div>
<iframe
id="video"
height="315"
src="https://www.youtube-nocookie.com/embed/y8Yv4pnO7qc?rel=0&controls=0&showinfo=0"
frameborder="0"
allowfullscreen=""
></iframe>
</div>
</section>
<section id="pricing">
<div class="product" id="tenor">
<div><h1>TENOR TROMBONE</h1></div>
<h2>$60</h2>
<ol>
<li>option 1</li>
<li>option 2</li>
<li>option 3</li>
</ol>
<button>SELECT</button>
</div>
<div class="product" id="bass">
<div><h1>BASS TROMBONE</h1></div>
<h2>$60</h2>
<ol>
<li>option 1</li>
<li>option 2</li>
<li>option 3</li>
</ol>
<button>SELECT</button>
</div>
<div class="product" id="valve">
<div><h1>VALVE TROMBONE</h1></div>
<h2>$60</h2>
<ol>
<li>option 1</li>
<li>option 2</li>
<li>option 3</li>
</ol>
<button>SELECT</button>
</div>
</section>
<footer id="footer">
<ul>
<li>Privacy</li>
<li>Terms</li>
<li>Contact</li>
</ul>
<p>All rights reserved</p>
</footer>
</div>
<script src="js/index.js"></script>
</body>
</html>