-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
22 lines (22 loc) · 735 Bytes
/
index.php
File metadata and controls
22 lines (22 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title id='title'>Scrollbar Pong</title>
<script src="./main.js"></script>
<link rel="stylesheet" type="text/css" href="./style.css"/>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200&display=swap" rel="stylesheet">
</head>
<body>
<div id='size'>
</div>
<div id='screen'>
<svg id='halfway'>
<line stroke-dasharray='20, 20' x1=0 y1=100% x2=100% y2=0 style='stroke: #fff; stroke-width: 5;'/>
</svg>
<div id='scorediv'>
<h1>Score: <span id='score'>0</span></h1>
<h1>Highscore: <span id='highscore'><?php echo($_COOKIE['highscore'] ?: '0') ?></span></h1>
</div>
</div>
</body>
</html>