-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (35 loc) · 1.09 KB
/
index.html
File metadata and controls
44 lines (35 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>GameChecker</title>
<link rel="stylesheet" href="styles.css" type="text/css" rel="preload">
</head>
<body>
<section>
<h3>GameChecker</h3>
<p class="section-lead">Select your system</p>
<div class="services-grid">
<a href="./dmg/" class="service service1">
<i class="ti-bar-chart"></i>
<h4>Gameboy</h4>
<p><img src="images/DMG-1.png" height=100% width=100%></p>
<p class="cta">This one! <span class="ti-angle-right"></p>
</a>
<a href="./gba/" class="service service2">
<i class="ti-light-bulb"></i>
<h4>Gameboy Advance</h4>
<p><img src="images/GBA-1.png" height=100% width=100%></p>
<p class="cta">This one! <span class="ti-angle-right"></p>
</a>
<div class='service service3 cursor-not-allowed'>
<a href="#" class="disabled">
<i class="ti-light-bulb"></i>
<h4>Not yet Implemented</h4>
<p><img src="images/CGB-1.png" height=100% width=100%></p>
<p class="cta">This one! <span class="ti-angle-right"></p>
</a>
</div>
</div>
</section>
</body>
</html>