This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (63 loc) · 1.71 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>--- Epi'TETRIS ---</title>
<style>
body {
background-color: #282828;
}
.align_button {
margin-top: 80px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.start_button {
width: 640px;
height: 88px;
margin-top: 16px;
border-radius: 4px;
border: 2px;
font-size: 35px;
font-family: edosz, sans-serif;
color: #EEEEEE;
background-color: #353535;
}
.start_button:hover {
color: #DDDDDD;
background-color: #404040;
}
.part_start {
margin: 96px auto;
width: 800px;
}
h2 {
display: block;
position: absolute;
left: 0px;
width: 320px;
font-family: edosz, sans-serif;
color: #DDDDDD;
text-align: center;
letter-spacing: 2px;
}
@font-face {
font-family: 'edosz';
src: url('../../fonts/EDOSZ/edosz.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body>
<div class="part_start">
<img src="./media/TITLE.png" style="display:block;margin:auto">
<form class="align_button">
<input class="start_button" type="button" onClick="location.href='./src/html/game.html?level=1'" value="i like it slow !" id="beginner">
<input class="start_button" type="button" onClick="location.href='./src/html/game.html?level=2'" value="i'm a semi advanced beginner !" id="medium">
<input class="start_button" type="button" onClick="location.href='./src/html/game.html?level=3'" value="i'm a Tetris master !" id="hard">
</form>
</div>
</body>
</html>