forked from nathanyu835/preprocessors-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·46 lines (42 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"/>
<link href='http://fonts.googleapis.com/css?family=Chewy' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/styles.css"/>
<title>Tic-Tac-Toe</title>
</head>
<body>
<div class="wrapper">
<header class="text-center">
<h1>Tic Meow Woof</h1>
<p class="lead">Defeat your friends and show no mercy</p>
</header>
<div id="board"></div>
<div class="alerts welcome"></div>
<div class="notifications"></div>
<form action="" method="POST">
<div class="input-group">
<div class="input-group-addon">Player 1</div>
<input name="pl-1" class="form-control" type="text" value=""/>
</div>
<div class="input-group">
<div class="input-group-addon">Player 2</div>
<input name="pl-2" class="form-control" type="text" value=""/>
</div>
<div class="text-center">
<input type="submit" class="btn btn-lg btn-primary" value="Start"/>
</div>
</form>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p id="won">... Won!</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="logic/app.js"></script> </body>
</html>