-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (87 loc) · 4.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg" style="background-color: #93C54B;">
<div class="container">
<a class="navbar-brand" href="#" style="font-size: 2rem; font-weight: bold;"><img
src="https://loading.io/assets/img/p/articles/quality/clamp-variance.gif" width="80px" height="80px"
alt=""> PraDa</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0" style="font-size: 1.5rem; font-weight: bold; ">
<li class="nav-item">
<a class="nav-link " href="#">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">ITEM</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- header Content -->
<div class="position-relative overflow-hidden text-center" style="background-color: #93C54B;">
<div class="col-md-6 p-lg-5 mx-auto my-5" style="background-color: #93C54B;">
<h1 class="display-3 fw-bold">Explore By Collection</h1>
<h3 class="fw-normal text-muted mb-3">Shop Online Today with PraDa — Browse & discover millions of products.
</h3>
<div class="d-flex gap-3 justify-content-center lead fw-normal">
<a class="icon-link" href="#">
See More
<img src="https://img.pikbest.com/png-images/20191028/e-commerce-shopping-festival-shopping-gif-animation_2515297.png!bw700"
alt="" width="200px" height="200px">
</a>
<a class="icon-link" href="#">
Buy Now
</a>
</div>
</div>
<div class="product-device shadow-sm d-none d-md-block"></div>
<div class="product-device product-device-2 shadow-sm d-none d-md-block"></div>
</div>
<!-- card section -->
<div class="container mt-5">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-5" id="mainContainer">
<!-- <div class="col"> -->
<!-- <div class="card shadow-sm" style="border: 10px solid #93C54B;">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZ2jj-Ot0mjIDN2qH6eN6q-KM5bhC3awQzfg&s"
class="bd-placeholder-img card-img-top" width="100%" height="300" alt="">
<div class="card-body" style="background-color: #93C54B;">
<h3>ddd</h3>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to
additional content. This content is a little bit longer.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<button type="button" class=""
style="width: 80px; height: 40px; border: none; outline: none; font-weight: bold; font-size: 1.2rem;">View</button>
</div>
<small class="text-body-secondary">PraDa</small>
</div>
</div>
</div> -->
<!-- <a href="./item.html"></a> -->
<!-- </div> -->
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>