-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
87 lines (87 loc) · 3.42 KB
/
Copy pathgames.html
File metadata and controls
87 lines (87 loc) · 3.42 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sweet Frontier - Games</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" type="image/png" href="images/smollogo.png">
</head>
<body>
<header>
<nav>
<ul>
<li class="logo"><img src="images/smollogo.png" alt="Sweet Frontier"></li>
<li><a href="index.html">Home</a></li>
<li class="disabled_link">Games</li>
<li><a href="history.html">History</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<section class="gametable">
<h1>Games</h1>
<table>
<tr>
<td>
<a href="gamepages/heirloom_thief.html">
<img src="images/gameses/heirloomthief.png" alt="Heirloom Thief">
</a>
</td>
<td>
<a href="gamepages/rogue_science.html">
<img src="images/gameses/rogs.png" alt="Rogue Science">
</a>
</td>
<td>
<a href="gamepages/fish.html">
<img src="images/gameses/fisn.png" alt="Fish">
</a>
</td>
<td>
<a href="gamepages/joey_adventure.html">
<img src="images/gameses/joey.png" alt="The Joey's Adventure">
</a>
</td>
</tr>
<tr>
<td>
<a href="gamepages/onelap.html">
<img src="images/gameses/onelap.png" alt="One Lap">
</a>
</td>
<td>
<a href="gamepages/once_in_a_lifetime.html">
<img src="images/gameses/lifetime.png" alt="Once in a Lifetime">
</a>
</td>
<td>
<a href="gamepages/nbslrr.html">
<img src="images/gameses/nbslrr.png" alt="NBS-LRR">
<!--https://v3.globalgamejam.org/2023/games/nbslrr-0-->
</a>
</td>
<td>
<a href="gamepages/orbitaloop.html">
<img src="images/gameses/orbitaloop.png" alt="OrbitaLoop">
</a>
</td>
</tr>
<tr>
<td>
<a href="gamepages/project_prince.html">
<img src="images/gameses/propr.png" alt="Project Prince">
</a>
</td>
</tr>
</table>
</section>
</main>
<footer>
<p>© 2022 Sweet Frontier. No rights reserved.</p>
<p>For any employee management ethical concerns, please be reassured by our <a href="working-conditions.html">Employee Working Conditions</a></p>
<p>For any issues, please feel free to <a href="contact.html">Contact Us</a></p>
</footer>
</body>
</html>