forked from shafiul/minesweeper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
45 lines (34 loc) · 1.67 KB
/
about.html
File metadata and controls
45 lines (34 loc) · 1.67 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
<html>
<head>
<title>Minesweeper - The Open Web HTML5 Game!</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="scripts/jquery.js" ></script>
<script src="scripts/common.js" ></script>
<script src="scripts/jquery.mobile-1.2.0.js" ></script>
<link rel="stylesheet" href="style/jquery.mobile-1.2.0.css" type="text/css" />
</head>
<body>
<div data-role="page" data-theme="c">
<div data-role="header" >
<a href="index.html" data-icon="home">Home</a>
<h1>About</h1>
</div><!-- /header -->
<div data-role="content">
<h4>Minesweeper</h4>
Download from <a data-inline="true" data-role="button" data-theme="e" href="https://marketplace.firefox.com/app/minesweeper/">Firefox Marketplace</a>
<h4>Developers</h4>
Minesweeper (alpha) is developed by <a href="http://shafiul.users.sf.net">Shafiul Azam</a>
<br />
<br />
Shafiul is a Mozilla Rep, open source enthusiast. He and his fellows have started
<a href="http://perceptronic.com">Perceptronic Solutions</a> to make the web more interesting
;-)
<br />
<br />
<h4>Want to hack around?</h4>
<a data-role="button" href="https://github.com/playnow/mines">Fork at GitHub!</a>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>