-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm11.html
85 lines (75 loc) · 2.72 KB
/
m11.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
<!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="./m11.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap"
/>
</head>
<body>
<div class="rectangle-root">
<div class="frame-child1"></div>
<img class="ellipse-icon" alt="" src="./public/ellipse-1.svg" />
<img class="ellipse-icon" alt="" src="./public/ellipse-2.svg" />
<div class="frame-child3"></div>
<div class="safe-voting-ui-group">
<b class="safe-voting-ui1">SAFE VOTING UI</b>
<img class="eci-logo-1-icon1" alt="" src="images/logo.png" />
</div>
<div class="rectangle-wrapper">
<div class="group-inner"></div>
</div>
<div class="frame-child4" id="rectangle3"></div>
<div class="frame-child5" id="rectangle4"></div>
<div class="frame-child6" id="rectangle5"></div>
<div class="frame-child7" id="rectangle6"></div>
<div class="frame-child8"></div>
<b class="tdp">2 TDP</b>
<div class="frame-child9"></div>
<div class="frame-child10"></div>
<div class="frame-child11"></div>
<b class="jsn">1 YCP</b>
<b class="ysr">3 JSN</b>
<b class="nota">4 NOTA</b>
<img class="image-3-icon" alt="" src="images/jns.png" />
<img class="image-6-icon" alt="" src="images/ycp.png" />
<img class="image-7-icon" alt="" src="images/tdp.png" />
<img class="pngwing-1-icon" alt="" src="images/nota.png" />
<img
class="pngtreegreen-check-mark-icon1"
alt=""
src="images/check.png"
/>
</div>
<script>
var rectangle3 = document.getElementById("rectangle3");
if (rectangle3) {
rectangle3.addEventListener("click", function (e) {
window.location.href = "./m12.html";
});
}
var rectangle4 = document.getElementById("rectangle4");
if (rectangle4) {
rectangle4.addEventListener("click", function (e) {
window.location.href = "./m12.html";
});
}
var rectangle5 = document.getElementById("rectangle5");
if (rectangle5) {
rectangle5.addEventListener("click", function (e) {
window.location.href = "./m12.html";
});
}
var rectangle6 = document.getElementById("rectangle6");
if (rectangle6) {
rectangle6.addEventListener("click", function (e) {
window.location.href = "./m12.html";
});
}
</script>
</body>
</html>