-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframe-5.html
54 lines (51 loc) · 1.71 KB
/
frame-5.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<link rel="stylesheet" href="./global.css" />
<link rel="stylesheet" href="./frame-5.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Itim:wght@400&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Josefin Sans:ital,wght@0,400;1,300&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Indie Flower:wght@400&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Irish Grover:wght@400&display=swap"
/>
</head>
<body>
<div class="rectangle-root">
<div class="frame-inner"></div>
<img class="image-1-icon" alt="" src="public/[email protected]" />
<div class="enter-number-of">Enter number of units</div>
<div class="enter-blood-group">Enter blood group</div>
<div class="rectangle-group" id="groupContainer">
<div class="group-item"></div>
<div class="add-to-inventory">Add to inventory</div>
</div>
<div class="rectangle-div"></div>
<div class="frame-child1"></div>
</div>
<script>
var groupContainer = document.getElementById("groupContainer");
if (groupContainer) {
groupContainer.addEventListener("click", function (e) {
window.location.href = "./mac-book-air-30.html";
});
}
</script>
</body>
</html>