-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.26 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
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Parts of the backend from https://wiki.selfhtml.org/wiki/JavaScript/Tutorials/TicTacToe#Vorbereitungen_mit_HTML -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>TIC-TAC-TOE</title>
<link rel="stylesheet" href="./style.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./backend.js"></script>
<link rel="icon" href="https://raw.githubusercontent.com/Chris6077/Portfolio/master/images/logo.png">
<style type="text/css">
</style>
</head>
<body>
<div class="misc">
<h2 class="caption">INIT CAPTION</h2>
<h1 class="score p1">INIT SCORE</h1>
<h1 class="score p2">INIT SCORE</h1>
</div>
<div class="container">
<button class="again" onclick="again()">Restart</button>
<button class="buttons" onclick="onePlayer()">1 Player</button>
<button class="buttons btn2" onclick="twoPlayer()">2 Player</button>
<button class="menu" onclick="menu()">Menu</button>
</div>
<div id="footer">
<div class="col-md-8">
<span>Copyright © 2018 Christian Winkler</span>
</div>
</div>
</body>
</html>