-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
65 lines (50 loc) · 2.23 KB
/
game.html
File metadata and controls
65 lines (50 loc) · 2.23 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<!--
/* Trek
* Copyright© 2002. Vedagiri Vijayakumar. All Rights Reserved.
*/
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Trek, a single-player strategy game played against the computer inspired by interactive 3-SAT solving">
<title>Trek</title>
<meta name="DC.Title" content="Trek">
<meta name="DC.Title.Alternative" content="Trek game page">
<meta name="DC.Creator.PersonalName" content="Vedagiri Vijayakumar">
<meta name="DC.Subject" content="Games">
<meta name="DC.Description" content="Trek, a single-player strategy game played against the computer inspired by interactive 3-SAT solving">
<meta name="DC.Identifier" content="Trek, the game: game page">
<meta name="DC.Date" content="January 21, 2022">
<meta name="DC.Language" scheme="ISO639-1" content="us-en">
<meta name="DC.Rights" content="Copyright© 2022. Vedagiri Vijayakumar. All Rights Reserved. (Also see: License)">
<meta name="theme-color" content="#1e90ff"/>
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body>
<header><h1>Trek</h1></header>
<nav>
<a class="playLink" href="game.html">New game</a>
<a id="linkClearSelections" href="#" class="playLink">Clear</a>
<a id="linkShare" href="#" class="playLink">Share</a>
</nav>
<article class="center">
<table id="gameGrid" cellpadding="7px">
</table>
<p id="messageBlock"></p>
<section>
<p id="statusMessage"><span id="statusBlock"></span> selections remaining.</p>
</section>
</article>
<section id="footer">
<p>Copyright © 2022. Vedagiri Vijayakumar. All Rights Reserved.</p>
<p><a href="LICENSE.txt" rel="noreferrer license" target=_blank>License</a></p>
</section>
<script src="app.js"></script>
</body>
</html>