generated from SchoolOfCode/precourse-product-page-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fall Limited Edition Sneakers</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="top-nav">
<a class="top-nav-item nav-hamburger-menu" href="#">
<img src="images/icon-menu.svg" alt="hamburger menu" />
</a>
<a href="#" class="top-nav-item nav-company-logo">
<img src="images/logo.svg" alt="company logo: sneakers" />
</a>
<a href="#" class="top-nav-item nav-cart-icon">
<img src="images/icon-cart.svg" alt="shopping cart" />
</a>
<a href="#" class="top-nav-item nav-avatar">
<img src="images/image-avatar.png" alt="user avatar" class="user-avatar" />
</a>
</nav>
<main class="main-container">
<img src="images/iamge-product-1.jpg" alt="fall limited edition sneakers" class="product-image" />
<section class="product-details-container">
<h3 class="company-category">Sneaker company</h3>
<h2>FallLmited Edition Sneakers</h2>
<p class="product-description">
These low-profile sneakers are your perfect casual wear companion. Featuring a durable rubber outer sole,
they'll withstand everything the weather can offer.
</p>
<div class="prices-container">
<span class="new-price">$125.00</span>
<span class="price-percentage">50%</span>
<span class="old-price">$250.00</span>
</div>
<button class="add-to-cart">
<span>
<img src="images/icon-cart.svg" alt="cart" />
</span>
Add to cart
</button>
</section>
</main>
</body>
</html>