-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (64 loc) · 2.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-widht, initial-scale=1.0" />
<title>freeCodeCamp Product Landing Page Project</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header id="header">
<div class="logo"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Guitar_picks-KayEss-1.jpeg/220px-Guitar_picks-KayEss-1.jpeg" id="header-img" load="lazy" width="50"></div>
<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 Works</a></li>
<li><a class="nav-link" href="#products">Products</a></li>
</ul>
</nav>
</header>
<main class="wrapper">
<h2>Hand-crafted Wooden Guitars</h2>
<section id="features" class="feat">
<h3>Quality Materials</h3>
<p>Our guitars are made from premium Kao wood. Easy to recycle and friendly to the environment</p>
<h3>Worldwide Delivery</h3>
<p> We have partnered with a world-class logistics company that delivers your guitar to anywhere in the world</p>
<h3>Money Back Guarantee</h3>
<p>You can have your money back if the guitar is not as described or seen on our site. <a>Terms and Conditions apply!</a></p>
</section>
<section id="how-it-works" class="works">
<div class="vid"><iframe src="https://www.youtube.com/embed/jhdcxbiMqic" id="video" alt="quitar quartet youtube video"></iframe></div>
</section>
<section id="products" class="prod">
<div class="sample">
<h4>Acoustic Guitar</h4>
<p>#5,000</p>
<button class="but">Buy</button>
</div>
<div class="sample">
<h4>Spanish Guitar</h4>
<p>#7,500</p>
<button class="but">Buy</button>
</div>
<div class="sample">
<h4>Electric Guitar</h4>
<p>#10,000</p>
<button class="but">Buy</button>
</div>
</section>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<label for="email">To place an Order fill in your Email below and we will send you a comprehensive catalogue<input type="email" name="email" id="email" Placeholder="JaneDoe@sky.com" /></label>
<input type="submit" name="submit" id="submit" value="Submit" class="sub"/>
</form>
<footer>
<ul>
<li>Privacy</li>
<li id="Terms_and_Conditions">Terms and Conditions</li>
<li>Contact</li>
</ul>
<p> © 2022 Wooden Guitars</p>
</footer>
</main>
</body>
</html>