-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
56 lines (55 loc) · 985 Bytes
/
home.html
File metadata and controls
56 lines (55 loc) · 985 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style>
*{
margin:0;
padding:0;
}
body{
font-family:monospace;
text-align:center;
background-color:#000;
color:white;
}
img{
height:200px;
width:270px;
}
.enemy{
position: absolute;
top:20px;
left:100px;
height:250px;
}
@keyframes blink{
0%{
opacity:1;
}
100%{
opacity:0;
}
}
p{
animation:2s blink infinite;
transition:0.6s;
}
</style>
</head>
<body>
<header>
<h1>IRON CLAD:RISE OF CAPRICONUS</h1>
</header>
<img src="pos1.png" alt="Assets/pos1.png">
<img class="enemy" src="enemy.png" alt="">
<p class="start">touch anywhere to start</p>
<script>
document.addEventListener("click",function(){
window.location.replace('game.html');
});
</script>
</body>
</html>