-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tic Tac Toe!</title>
<link rel="stylesheet" href="css/global.css" />
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/jquery.js"></script>
</head>
<body>
<div class="global-container">
<h1>Tic Tac Toe!</h1>
<div class="container">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div id="right-panel">
<form name="name" class="form-name">
<h2>Nom des joueurs:</h2>
<label> Nom du Joueur 1: </label>
</br>
<input TYPE="text" NAME="joueur1" placeholder="Joueur 1" class="form-control">
</br>
<label> Nom du Joueur 2: </label>
</br>
<input TYPE="text" NAME="joueur2" placeholder="Joueur 2" class="form-control">
</br>
<input TYPE="button" VALUE="Ok" onClick="changeName()" class="name-submit btn btn-block btn-lg btn-inverse">
</form>
<br>
<br>
<h2 id="score-bloc">Score:</h2>
</div>
<div class="replay"><a href="#fakelink" class="btn btn-block btn-lg btn-inverse">Rejouer</a></div>
</div>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>