-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
47 lines (47 loc) · 1.65 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About lzms</title>
<meta charset="UTF-8" />
<meta name="Keywords" content="MineSweeper">
<meta name="Description" content="">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" type="image/png" href="images/winmine.png">
<link type="text/css" rel="stylesheet" href="styles/about.css" />
</head>
<body>
<div id='left-col'>
<img id='about-icon' src='images/winmine.svg'/>
</div>
<div id='right-col'>
<p>
Clone of Microsoft Windows® Minesweeper<br/>
Version 0.0.3<br/>
Copyright © 2016<br/>
by Yukun Guo<br/>
<br/>
This product is licensed to:<br/>
XYZZY<br/>
ZZYZX Corp.<br/>
</p>
<hr/>
Your serial number label is on the inside back<br/>
cover of Getting Started with Microsoft Windows.<br/>
<hr/>
386 Enhanced Mode<br/>
<table>
<tr>
<th>Memory:</th>
<th>640 KB Free</th>
</tr>
<tr>
<th>System Resources:</th>
<th>87.53% Free</th>
</tr>
</table>
<input type='button' id='ok-button' value="OK" onclick='self.close()'>
<input type='button' id='view-source-button' value="View Source on GitHub"
onclick='window.open("https://github.com/gyk/lzms");'>
</div>
</body>
</html>