-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwomen_product.html
44 lines (43 loc) · 1.2 KB
/
women_product.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ProductDetail</title>
<link rel="stylesheet" href="./styles/navbar2.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<style>
#container{
margin: 100px auto;
margin-left: 200px;
}
#container div{
text-align: center;
font-size: 20px;
}
#container div button{
width: 200px;
height: 50px;
font-size: 20px;
color: white;
background-color: black;
}
#container div button:hover{
padding-top: 20px;
color: black;
background-color: white;
border: 2px solid black;
}
</style>
</head>
<body>
<div id="navbar"></div>
<input type="checkbox" id="menu_bar">
<label for="menu_bar" class="checkbtn"><i class="fa-solid fa-bars"></i></label>
<div id="nav2"></div>
<div id="container"></div>
<div id="futter"></div>
</body>
</html>
<script src="./scripts/women_product.js" type="module"></script>