-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2_mobile.html
48 lines (41 loc) · 1.49 KB
/
index2_mobile.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!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="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.5.0/p5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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'>Mobile Version</span>
</h1>
<b>Einfach mit den Nummertasten bedienen.</b>
<p id="p1">Bisher noch kein Gewinner.</p>
<p id="p2">Stand: 0 R | 0 B</p>
<div>
<button id="button7" class="button">7</button>
<button id="button8" class="button">8</button>
<button id="button9" class="button">9</button>
</div>
<div>
<button id="button4" class="button">4</button>
<button id="button5" class="button">5</button>
<button id="button6" class="button">6</button>
</div>
<div>
<button id="button1" class="button">1</button>
<button id="button2" class="button">2</button>
<button id="button3" class="button">3</button>
<button id="reset" class="resetButton">Reset</button>
</div>
</body>
</html>