-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathminesweeper.html
68 lines (61 loc) · 2.18 KB
/
minesweeper.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
62
63
64
65
66
67
68
<html>
<head>
<title>MineSweeper</title>
<link rel=StyleSheet href="cell.css" type="text/css">
<script src="minesweeper.js"></script>
<script src="init.js"></script>
</head>
<body>
<!--<h2 align = "center"> Chrome MineSweeper </h2>-->
<div align = "center" >
<img src = "images/logo.png"/>
<div>
<img src ="images/sface.png"
id = "newEasyGameButton"
width = "48px" height = "48px"
title = "small"
style = "cursor:pointer"
/>
<img src ="images/mface.png"
id = "newMedGameButton"
width = "48px" height = "48px"
title = "medium"
style = "cursor:pointer"
/>
<img src ="images/lface.png"
id = "newLargeGameButton"
width = "48px" height = "48px"
title = "large"
style = "cursor:pointer"
/>
<br>
<img id ="pauseGameImg"
src ="images/pause1.png"
width = "48px" height = "48px"
title = "pause/resume"
style = "cursor:pointer"
/>
<img name ="scoreGameImg"
id ="scoreGameImg"
src ="images/score.png"
width = "48px" height = "48px"
title = "Score Board"
style = "cursor:pointer"
/>
<br>
<img src="images/timer.png"/>
<div id ="timerLabel" style="display:inline;"></div>
<img src="images/flag.png"/>
<div id ="flagsLabel" style="display:inline"></div>
<div id ="msg" style = "display:table;border:1px coral solid;padding:10px"></div>
</div>
<br>
<div id = "board"> </div>
<div id = "pauseScreen"> </div>
<div id = "scoreBoard"> </div>
<br>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2Fkminesweeper&width=350&height=80&colorscheme=light&layout=standard&action=like&show_faces=true&send=false" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:350px; height:80px;display:block;" allowTransparency="true"></iframe>
(c) 2009-2025 <a href="http://kotbcorp.blogspot.com">kotbcorp</a>
</div>
</body>
</html>