neingeist
/
30shooter
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

44 lines
704 B
HTML

12 years ago
<html>
<head>
12 years ago
<script type="text/javascript" src="herzle.js"></script>
12 years ago
12 years ago
<style type="text/css">
* {
font-size: 50px;
color: #ff00ff;
12 years ago
font-family: helvetica, arial;
overflow: hidden;
12 years ago
}
12 years ago
#player {
position: absolute;
12 years ago
}
12 years ago
#enemy {
position: absolute;
top: 10%;
12 years ago
}
12 years ago
#herzles {
position:absolute;
top: 10%;
left: 10%;
}
12 years ago
#pewpew {
position:absolute;
top: 10%;
right: 10%;
}
div.shoot {
position:absolute;
}
</style>
12 years ago
</head>
12 years ago
<body onload="init();">
<div id="enemy">30</div>
12 years ago
<div id="player">&lt;</div>
12 years ago
<div id="pewpew"></div>
12 years ago
<div id="herzles"></div>
12 years ago
</body>
</html>