-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (77 loc) · 2.21 KB
/
index.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
86
87
88
89
90
91
92
93
<!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>home</title>
<style>
@font-face {
font-family: 'IBMPlexSansHebrew-Light';
src: url('font/IBMPlexSansHebrew-Light.ttf') format('truetype');
}
#all_home {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
#img_home {
margin-right: 30%;
margin-top: 1%;
}
.buttons_home {
display: flex;
flex-direction: row;
justify-content: flex-start;
}
#img_rules {
height: 100%;
width: 27%;
margin-right: 4%;
}
#img_play {
width: 45%;
margin-right: 10%;
}
#img_bool {
width: 74%;
}
body {
background-image: url('images/black2.jpg');
direction: rtl;
background-attachment: fixed;
}
#names {
color: white;
text-align: center;
font-size: 13pt;
margin-top: 7.99%;
font-family: IBMPlexSansHebrew-Light;
}
</style>
</head>
<body>
<div id="all_home">
<div id="img_home">
<img id="img_bool" src="images/logo2.png" alt="logo_img">
</div>
<div class="buttons_home">
<img id="img_play" src="images/play-removebg-preview.png" alt="let_play">
<img id="img_rules" src="images/rules.png" alt="let_rules">
</div>
<div id="names">
All rights reserved to Efrat Hartman & Tami Cohen ©
</div>
</div>
<script>
document.getElementById("img_play").addEventListener("click", player)
document.getElementById("img_rules").addEventListener("click", rules)
function player() {
window.open("html_pages/בול_פגיעה.html", "_self")
}
function rules() {
window.open("html_pages/instructions.html", "_self")
}
</script>
</body>
</html>