-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (110 loc) · 3.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FCC: Product Landing Page</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&family=Ubuntu:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header id="header">
<img src="https://image.flaticon.com/icons/svg/3043/3043907.svg" alt="" id="header-img">
<h1>Code Bookstore</h1>
<nav id="nav-bar">
<a href="#top" class="nav-link">Features</a>
<a href="#video" class="nav-link">How it Works</a>
<a href="#bottom" class="nav-link">Pricing</a>
</nav>
</header>
<main>
<section id="top">
<h2>Enter your Email to receive Newsletter</h2>
<form action="https://www.freecodecamp.com/email-submit" id="form">
<input type="email" name="email" id="email" value="" placeholder="Email Address" required=""><br>
<input type="submit" value="GET STARTED" id="submit">
</form>
</section>
<section id="middle">
<div class="features-div">
<div class="image">
<img src="https://image.flaticon.com/icons/png/512/2997/2997162.png" alt="">
</div>
<div class="text">
<h4>Premium Books</h4>
<p>Our books are the most respected on the market, the best-sellers found today. </p>
</div>
</div>
<div class="features-div">
<div class="image">
<img src="https://image.flaticon.com/icons/svg/3050/3050187.svg" alt="">
</div>
<div class="text">
<h4>Fast Shipping</h4>
<p>We make sure you receive your book 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">
<div class="image">
<img src="https://image.flaticon.com/icons/svg/2996/2996992.svg" alt="">
</div>
<div class="text">
<h4>Quality Assurance</h4>
<p>For every purchase you make, we will ensure there are no damages or breakdowns and we will check the book's condition.</p>
</div>
</div>
<div class="video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/M70H4M_pL4o?controls=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen id="video"></iframe>
</div>
</section>
<section id="bottom">
<div class="items-container">
<div>
<!-- child -->
<h4>CLEAN CODE</h4>
</div>
<div>
<!-- child -->
<h5>$34.99</h5>
<figure>
<img src="https://images-na.ssl-images-amazon.com/images/I/41jEbK-jG+L._SX374_BO1,204,203,200_.jpg" alt="">
</figure>
</div>
<div>
<button>SELECT</button>
</div>
</div>
<div class="items-container">
<div>
<h4>YOU DON'T KNOW JS</h4>
</div>
<div>
<h5>$56.99</h5>
<figure>
<img src="https://images-na.ssl-images-amazon.com/images/I/41WdbPkuINL._SX331_BO1,204,203,200_.jpg" alt="">
</figure>
</div>
<div>
<button>SELECT</button>
</div>
</div>
<div class="items-container">
<div>
<h4>INTRODUCTION TO ALGORITHMS</h4>
</div>
<div>
<h5>$26.99</h5>
<figure>
<img src="https://images-na.ssl-images-amazon.com/images/I/41-1VkO+1lL._SY344_BO1,204,203,200_.jpg" alt="">
</figure>
</div>
<div>
<button>SELECT</button>
</div>
</div>
</section>
</main>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/3.3.3/gsap.min.js'></script>
<script src="./script.js"></script>
</body>
</html>