-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TicTacToe von Marek</title>
</head>
<nav>
<a href="index.html">PC Version</a>
<a href="index2_mobile.html">Mobile Version</a>
</nav>
<body>
<script src="./p5.js"></script>
<script src="./2.9.3_tsparticles.confetti.bundle.min.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
<h1>
Tic Tac Toe von Marek | <span class='blue-color'>PC Version</span>
</h1>
<b>Einfach mit dem Numpad bedienen. Resetten mit R.</b>
<p id="p1">Bisher noch kein Gewinner.</p>
<p id="p2">Stand: 0 R | 0 B</p>
</body>
</html>