-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
165 lines (147 loc) · 5.12 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
153
154
155
156
157
158
159
160
161
162
163
164
165
<!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" />
<title>JS-Final Project</title>
<link rel="stylesheet" href="style.css" />
<!-- font awsome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- slider links -->
<link
rel="stylesheet"
type="text/css"
href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"
/>
<!-- end slider links -->
<!-- bootstrap link -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
</head>
<body>
<i class="fa fa-bars" id="bar"></i>
<!-- nav bar -->
<nav id="main-nav" class="tranformClass">
<div class="left-menu">
<!-- main logo menu -->
<div class="nav-logo">
<a href="index.html"> <span> shope</span> lane </a>
</div>
<!-- clothing menu -->
<a class="clothing-menu-a" href="#mens-and-womens-clothing-section">
Clothing
</a>
<a class="Accessories-menu-a" href="#accesserios-section">
Accessories
</a>
</div>
<div class="mid-menu">
<!-- search icon -->
<i class="fa fa-search"></i>
<!-- serch bar -->
<input type="text" placeholder="Search..." />
</div>
<div class="right-menu">
<!-- cart -->
<div class="cart-wrapper">
<!-- cart count -->
<p class="cart-acount">0</p>
<a href="checkoutpgae.html">
<i class="fa fa-shopping-cart"></i>
</a>
</div>
<img src="img/criz.jpeg" />
</div>
</nav>
<main class="main_home">
<section class="slider-home">
<div class="scrollsection">
<img class="imgscroll" src="img/96OnkX7.png" />
<img class="imgscroll" src="img/KtGxwnN.png" />
<img class="imgscroll" src="img/p0wdadG.png" />
<img class="imgscroll" src="img/sfjg9R8.png" />
</div>
</section>
<!-- mens clothing section -->
<section id="mens-and-womens-clothing-section">
<h3>Clothing for Men and Women</h3>
<!-- clothing grid -->
<div class="clothing-grid">
<!-- product card -->
</div>
</section>
<!-- mens clothing section end -->
<section id="accesserios-section">
<h3>Accessories for Men and Women</h3>
<div class="accesserios-grid">
<!-- product card -->
</div>
</section>
</main>
<!-- footer -->
<div class="product-container non">
<div class="img-section">
<div class="img-div"></div>
</div>
<div class="details-section-wrapper">
<div id="details-section"></div>
<div
id="product-preview-img-contanier"
class="previewImgContanier"
></div>
<button id="addToCartBtn">Add to cart</button>
</div>
</div>
<footer>
<div class="div1">
<p class="footer-head">Online Store</p>
<a class="footer-link" href="#mens-and-womens-clothing-section" >Men Clothing</a
>
<a class="footer-link" href="#mens-and-womens-clothing-section">Women Clothing</a
>
<a class="footer-link" href="#accesserios-section">Men Accessories</a>
<a class="footer-link" href="#accesserios-section">Women Accessories</a>
</div>
<div class="div2">
<p class="footer-head">Helpful Links</p>
<a class="footer-link" href="#">Home</a>
<a class="footer-link" href="#">About</a>
<a class="footer-link" href="#">Contact</a>
</div>
<div class="div3">
<p class="footer-head">Partners</p>
<a class="footer-link" href="#">Zara</a>
<a class="footer-link" href="#">Pantaloons</a>
<a class="footer-link" href="#">Levis</a>
<a class="footer-link" href="#">UCB</a>
<a class="footer-link" href="#">+ Many More</a>
</div>
<div class="div4">
<p class="footer-head">Address</p>
<p class="footer-link">Building 101</p>
<p class="footer-link">Central Avenue</p>
<p class="footer-link">LA - 902722</p>
<p class="footer-link">United States</p>
</div>
</footer>
<img id="edyodalogo" src="./img/edyodalogo.png" alt="EdYoda" />
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"
></script>
<script src="App.js"></script>
<script
type="text/javascript"
src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"
></script>
</body>
</html>