-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (76 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Resource Drop | Week 2</title>
<!-- Normalize CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/main.css">
<!-- Owl Carousel CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900" rel="stylesheet">
</head>
<body>
<nav>
<h2 class="logo">
Fashion.
</h2>
<ul class="categories_menu">
<li>
<a href="#">Men</a>
</li>
<li>
<a href="#">Women</a>
</li>
<li>
<a href="#">Accessories</a>
</li>
<li>
<a href="#">Personal Care</a>
</li>
</ul>
<div class="right_nav">
<ul>
<li class="search">
<input type="text" name="search" id="search_field" placeholder="Search">
<img src="images/search_icon.png" alt="Search Icon">
</li>
<li>
<img src="images/shopping_icon.png" alt="Shopping Icon" class="cart">
</li>
<li class="hamburger">
<span></span>
<span></span>
<span></span>
</li>
</ul>
</div>
<div class="clearfix"></div>
</nav>
<div class="main">
<div class="left_section">
<h1>
Original
<br>
<span>Premium Sneaker</span>
</h1>
<p>Sneakers are shoes primarily designed for sports or other forms of physical exercise</p>
<p class="discount_price">$149.00</p>
<p class="original_price"><strike>$179.00</strike></p>
<a href="#">Add to bag
<span></span>
</a>
</div>
<div class="right_section">
</div>
</div>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Owl Carousel JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
</body>
</html>