-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (45 loc) · 1.75 KB
/
index.html
File metadata and controls
56 lines (45 loc) · 1.75 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UUTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE-edge" />
<meta name="viewport" content="width=device-width, initial-scaale=1.0"/>
<title>js</title>
<link rel="stylesheet" href="index.css"/>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/all.min.css"/>
<link rel="stylesheet" href="css/bootstrap.min.css.map"/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap" rel="stylesheet" />
</head>
<body>
<div class="desktopwrapper">
<div class="navbar align-items-center d-flex">
<p class="fw-bold pt-3" >Products</p>
<button class="btn fw-bold" onclick="myFunction()"> Dark Mode</button>
</div>
<div id="searchWrapper">
<i class="search-icon fa-solid fa-magnifying-glass"></i>
<input id="searchbar" type="text" onkeyup="searchElement()"
name="search" placeholder="Search..." data-search>
</div>
<div id="cards" class="mb-5" cards>
</div>
</div>
<div class="mobilewrapper">
<div class="navbar align-items-center d-flex col-sm-10">
<p class="fw-bold pt-3" >Products</p>
<button class="btn fw-bold" onclick="myFunction()"> Dark Mode</button>
</div>
<div id="searchWrapper">
<i class="search-icon fa-solid fa-magnifying-glass"></i>
<input id="searchbar" type="text" onkeyup="searchElement()"
name="search" placeholder="Search..." data-search>
</div>
<div id="mobileCards" class="mb-5" cards>
</div>
</div>
<script src="main.js"></script>
</body>
</html>