-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (47 loc) · 1.63 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Tic-Tac-Toe | Caren Garcia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<header>
<h1>Hej! Let's play Tic-Tac-Tøö</h1>
</header>
<p>Sweden and Norway are battling for the dominance of how to write the letter "O"</p>
<p>You and a friend should pick a side and see which O is the mightiest</p>
<div id="panel">
<div id="player1" class="norge">Norge</div>
<div id="player2" class="sverige">Sverige</div>
</div>
<div class="container">
<div class="row">
<div id="a" class="col-md-4 button"><img src=""></div>
<div id="b" class="col-md-4 button"><img src=""></div>
<div id="c" class="col-md-4 button"><img src=""></div>
</div>
</div>
<div class="container">
<div class="row">
<div id="d" class="col-md-4 button"><img src=""></div>
<div id="e" class="col-md-4 button"><img src=""></div>
<div id="f" class="col-md-4 button"><img src=""></div>
</div>
</div>
<div class="container">
<div class="row">
<div id="g" class="col-md-4 button"><img src=""></div>
<div id="h" class="col-md-4 button"><img src=""></div>
<div id="i" class="col-md-4 button"><img src=""></div>
</div>
</div>
<div class="reset">
<button name="Reset" value="Reload Page" onclick="window.location.reload()">Reset</button>
</div>
</body>
</html>