-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct-page.html
More file actions
115 lines (98 loc) · 3.49 KB
/
product-page.html
File metadata and controls
115 lines (98 loc) · 3.49 KB
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
<!-- Solution for Build a Product Landing Page -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Product Landing Page</title>
<link rel="stylesheet" href="styles.css"/>
<script src="https://kit.fontawesome.com/4619b3e12f.js" crossorigin="anonymous"></script></head>
<!-- Here,is link to make the connection between html and icons-->
<body>
<header id="header">
<div class="logo">
<img id="header-img" alt="Logo" src="https://cdn.freecodecamp.org/testable-projects-fcc/images/product-landing-page-logo.png"/>
</div>
<nav id="nav-bar" >
<ul>
<li><a class="nav-link" href="#features">Features</a></li>
<li><a class="nav-link" href="#howItWorks">How it Works</a></li>
<li><a class="nav-link" href="#pricing">Pricing</a></li>
</ul>
</nav>
</header>
<section id="hero">
<h2>Handcrafted, home-made masterpieces</h2>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input type="email" id="email" placeholder="Enter your email address" name="email" required/>
<input type="submit" id="submit" value="GET STARTED"/>
</form>
</section>
<div class="container">
<div id="features">
<div class="grid">
<div class="icon">
<i class="fa-solid fa-fire"></i>
</div>
<div class="text">
<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="fa-solid fa-truck"></i>
</div>
<div class="text">
<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="fa-solid fa-battery-full"></i>
</div>
<div class="text">
<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>
<div id="howItWorks">
<iframe id="video" height="315" width="500" src="https://www.youtube-nocookie.com/embed/y8Yv4pnO7qc?rel=0&controls=0&showinfo=0" frameborder="0" allowfullscreen="" title="Product Video"></iframe>
</div>
<div id="pricing">
<div class="Product">
<div class="level">TENOR TROMBONE</div>
<h2>$600</h2>
<ol>
<li>Lorem Ipsum.</li>
<li>Lorem Ipsum.</li>
<li>Lorem ipsum dolor.</li>
<li>Lorem Ipsum.</li>
</ol>
<button class="btn">SELECT</button>
</div>
<div class="Product">
<div class="level">BASS TROMBONE</div>
<h2>$900</h2>
<ol>
<li>Lorem Ipsum.</li>
<li>Lorem Ipsum.</li>
<li>Lorem ipsum dolor.</li>
<li>Lorem Ipsum.</li>
</ol>
<button class="btn">SELECT</button>
</div>
<div class="Product">
<div class="level">VALVE TROMBONE</div>
<h2>$1200</h2>
<ol>
<li>Plays similar to a Trumpet</li>
<li>Great for Jazz Bands</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
</ol>
<button class="btn">SELECT</button>
</div>
</div>
</div>
</body>
</html>