-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 1.88 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 1.88 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="settings">
<div class="player" id="player1">
<h4>Spiller 1</h4>
<input type="textfield" class="name">
<div class="image_dropzone">
<input class="img_upload" type="file" name="files[]">
<p class="dragDrop">Drag and drop billede</p>
<span class="remove-img">✕</span>
</div>
</div>
<div class="player" id="player2">
<h4>Spiller 2</h4>
<input type="textfield" class="name">
<div class="image_dropzone">
<input class="img_upload" type="file" name="files[]">
<p class="dragDrop">Drag and drop billede</p>
<span class="remove-img">✕</span>
</div>
</div>
</div>
<div class="boxes">
<div class="box">
<span class="x">X</span>
<span class="o">O</span>
</div>
<div class="box">
<span class="x">X</span>
<span class="o">O</span>
</div>
<div class="box">
<span class="x">X</span>
<span class="o">O</span>
</div>
<div class="box">
<span class="x">X</span>
<span class="o">O</span>
</div>
<div class="box">
<span class="x">X</span>
<span class="o">O</span>
</div>
<div class="box">
<span class="x">X</span>
<span class="o">O</span>
</div>
<div class="box">
<span class="x">X</span>
<span class="o">O</span>
</div>
<div class="box">
<span class="x">X</span>
<span class="o">O</span>
</div>
<div class="box">
<span class="x">X</span>
<span class="o">O</span>
</div>
<div class="x-wins js-wins">X Wins!<span>Play Again?</span></div>
<div class="o-wins js-wins">O Wins!<span>Play Again?</span></div>
</div>
<button class="reset">Reset</button>
<script src="./script.js" type="text/javascript"></script>
</body>
</html>