-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
44 lines (35 loc) · 1.29 KB
/
product.html
File metadata and controls
44 lines (35 loc) · 1.29 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
<!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="product.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="card" class="mb-5" >
</div>
</div>
<div class="mobilewrapper">
<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="mobileCard" class="mb-5" >
</div>
</div>
<script src="product.js"></script>
</body>
</html>