-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
61 lines (59 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<!-- Use title if it's in the page YAML frontmatter -->
<title>Welcome to Minesweeper</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"/>
<link href="css/normalize.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/all.css" media="screen" rel="stylesheet" type="text/css" />
<link rel="icon" href="/img/favicon.png" type="image/png" />
<script src="js/index.js" type="text/javascript"></script>
</head>
<body>
<div id="option-wrap">
<div id= "options">
<a href = "/"><h1>FajitaNachos</h1></a>
<div id = "new-button" class = 'option-button'>
<button id= "new-game">New Game</button>
</div>
<div class = "option-select">
<span class="label">Difficulty</span>
<select id="difficulty">
<option value="easy">Beginner</option>
<option value = "middle">Intermediate</option>
<option value = "hard">Expert</option>
</select>
</div>
<div class = "option-select">
<span class= "label">Board Size</span>
<select id="board-size">
<option data-x="8" data-y="8">8x8</option>
<option data-x="16" data-y="16">16x16</option>
<option data-x="30" data-y="16">32x16</option>
</select>
</div>
<span class = "option-checkbox">
<input type="checkbox" class="option-input" checked="checked" id="show-timer">Show Timer</input>
</span>
</div>
</div>
<div id ="board">
<h1>Welcome to Minesweeper</h1>
<div id = "minesweeper">
</div>
<div id= "tic-tac-toe">
<a href= "/tic-tac-toe">Prefer Tic-Tac-Toe?</a>
</div>
</div>
<script>
var _gaq=[['_setAccount','UA-34699920-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>