-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (66 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebCode-1</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<style>
.card{
width: 18rem;
height: 23rem;
}
.card-img-top{
width: 100%;
height: 12rem;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-dark text-light px-5">
<div class="nav-brand">
<img src="" alt="" srcset="">
<a href="#" class="text-decoration-none text-light">Makeup Products </a>
</div>
<ul class="navbar-nav ms-auto ">
<li class="nav-item"><a href="http://" class="nav-link text-light">Home</a></li>
<li class="nav-item dropdown"><a href="#" role="button" data-bs-toggle="dropdown" class="nav-link dropdown-toggle text-light">Products</a>
<ul class="dropdown-menu">
<li><a href="#" class="dropdown-item">Product_type</a></li>
<li><a href="http://" class="dropdown-item">Brand</a></li>
<li><a href="http://" class="dropdown-item text-capitalize">price_less_than</a></li>
<li><a href="http://" class="dropdown-item">price_greater_than</a></li>
</ul>
</li>
<li class="nav-item"><a href="http://" class="nav-link text-light">About</a></li>
<li class="nav-item"><a href="http://" class="nav-link text-light">Cart</a></li>
</ul>
</nav>
</header>
<div class="container-fluid bg-secondary text-light">
<div class="h4 container">
Products
</div>
<div class="container text-center">
<div class="data row">
</div>
</div>
</div>
<footer class="bg-light text-center text-lg-start">
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2)">
©️ 2023 Copyright:
<a href="#" class="text-dark text-decoration-none">Makeup API</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"
integrity="sha384-fbbOQedDUMZZ5KreZpsbe1LCZPVmfTnH7ois6mU1QK+m14rQ1l2bGBq41eYeM/fS"
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/a8a5eff58c.js" crossorigin="anonymous"></script>
<script src="./script.js"></script>
</body>
</html>