-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
152 lines (145 loc) · 4.99 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./Images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>NoBirds</title>
</head>
<body>
<main>
<!-- Nav Bar -->
<nav>
<div class="nav__menu-icon">
<div class="nav__menu-icon--top"></div>
<div class="nav__menu-icon--mid"></div>
<div class="nav__menu-icon--bot"></div>
</div>
<div class="nav__menu--desktop">
<a class="nav__menu-item nav__link" href="./collections/shoes.html"
>Shoes</a
>
<!-- <a class="nav__menu-item nav__link" href="account/index.html">
<img src="Images/user.svg" class="nav__user-icon" alt="User icon"
/></a> -->
</div>
<a class="logo" href="index.html">
<img class="logo" src="./Images/logo.webp" alt="company logo" />
</a>
<div class="nav__cart-icon-wrapper">
<img
class="nav__cart-icon"
src="./Images/Cart_Icon.png"
alt="cart icon"
/>
<p class="nav__cart-count"></p>
</div>
<div class="shopping-cart">
<div class="shopping-cart__header">
<div class="shopping-cart__close"></div>
</div>
<div class="shopping-cart__items"></div>
<template class="shopping-cart__template">
<img class="shopping-cart__image" src="" />
<div class="shopping-cart__selections">
<h2 class="shopping-cart__name"></h2>
<p class="shopping-cart__color"></p>
<p class="shopping-cart__size"></p>
<div class="shopping-cart__quantity-wrapper">
<i
class="shopping-cart__minus fa fa-minus"
data-add="-1"
aria-hidden="true"
></i>
<p class="shopping-cart__quantity">3</p>
<i
class="shopping-cart__plus fa fa-plus"
data-add="1"
aria-hidden="true"
></i>
</div>
</div>
<div class="shopping-cart__delete-wrapper">
<i
class="shopping-cart__delete fa fa-times"
aria-hidden="true"
></i>
<p class="shopping-cart__price"></p>
</div>
<hr />
</template>
<div class="shopping-cart__checkout">
<div class="shopping-cart__totals">
<h4 class="shopping-cart__subtotal">Total</h4>
<p class="shopping-cart__total"></p>
</div>
<button class="btn btn--active">proceed to checkout</button>
</div>
</div>
<div class="shopping-cart__overlay"></div>
</nav>
<div class="nav__menu">
<a class="nav__menu-item nav__link" href="./collections/shoes.html"
>Shoes</a
>
<hr />
<!-- <a class="nav__menu-item nav__link" href="account.html">Account</a> -->
</div>
<!-- End of Nav Bar (HOMEPAGE) -->
<!-- Background Image Start -->
<div class="Container__Image">
<div class="container__homepage__mobile">
<img
class="homepage_mobile_img"
srcset="
Images/Mobile_Background_Img.png 767w,
Images/Desktop_Background_Img.png 768w
"
sizes="(max-width: 768px) 767px,
768px"
alt="background image"
/>
<!--
<img
class="homepage_desktop_img"
src="Images/Desktop_Background_Img.png"
alt="background image"
/> -->
</div>
<div class="container">
<h1 class="homepage__text">Made from Trees. Designed for Sun.</h1>
<a class="Homepage_Button" href="./collections/shoes.html"
>SHOP SHOES</a
>
<!-- <a class="Homepage_Button" href="#">SHOP MEN</a> -->
</div>
</div>
<!-- Slide Show Section
<div class="slideshow_title">
<h2>Our Favourites</h2>
<div class="slideshow_cat">
<p>FOR EVERYDAY</p>
<p>FOR RUNNING</p>
<p>FOR RELAXING</p>
</div>
</div>
<!-- Slide 1 -->
<!-- <div class="slideshow_container">
<div class="slideshow">
<div class="slide">
<img src="Images/Desktop_Background_Img.png" alt="" />
<h2>Tree Runner</h2>
<hr />
<h3>Light and Breezy Trainer</h3>
<a class="Homepage_Button" href="">SHOP MEN</a>
<a class="Homepage_Button" href="">SHOP WOMEN</a>
</div>
</div>
</div>
-->
</main>
<script defer type="module" src="scripts/main.js"></script>
</body>
</html>