-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (84 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<title>Our store</title>
</head>
<body >
<header>
<div id="navbar">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#navbar">Our store</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#navbar">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#products">Proucts</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#cart">Cart</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<main>
<section>
<div>
<div id="carouselExampleInterval" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner h-75">
<div class="carousel-item active" data-bs-interval="3000">
<img src="assets/product1.jpg" class="d-block w-100 object-fit-cover" alt="..." width="500px" height="600px">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="assets/product6.jpg" class="d-block w-100 object-fit-cover" alt="..." width="500px" height="600px">
</div>
<div class="carousel-item" data-bs-interval="3000">
<img src="assets/product.jpg" class="d-block w-100 object-fit-cover" alt="..." width="500px" height="600px">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleInterval"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleInterval"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<section>
<h2 class="text-center p-3 m-1 border border-0 rounded-1 bg-secondary bg-gradient text-light">Our Products </h2>
<div id="products" class="row d-flex flex-row justify-content-center">
</div>
</section>
<section>
<h2 class="text-center p-3 m-1 border border-0 rounded-1 bg-secondary bg-gradient text-light">Cart</h2>
<div id="cart">
</div>
</section>
</main>
<footer>
<div>
<h2 class="text-center p-3 m-1 border border-0 rounded-1 bg-secondary bg-gradient text-light">OUR STORE</h2>
<p class="text-center">Thank You for Shopping with Us!</p>
</div>
</footer>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>