-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (22 loc) · 898 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Deutschball</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:700|Oswald" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./assets/css/main.css">
<link rel="stylesheet" type="text/css" href="./assets/css/game.css">
<link rel="stylesheet" type="text/css" href="./assets/css/admin.css">
<script defer type="text/javascript" src="./assets/js/timer.js"></script>
<script defer type="text/javascript" src="./assets/js/controller.js"></script>
</head>
<body>
<h1 class="title">Deutschball</h1>
<form method="get" action="./">
<input type="text" name="team1" placeholder="Team Name">
<input type="text" name="team2" placeholder="Team Name">
<input type="number" name="time" placeholder="Time">
<input type="text" name="game" value="true" style="display: none">
<button>Begin!</button>
</form>
</body>
</html>