forked from TylerPalko/gamehub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (78 loc) · 2.17 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="The Best website for learning math and coding with examples!">
<meta name="keywords" content="Education,Coding,Math,HTML,HTML5">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iomkr's coding site</title>
<link rel="stylesheet" href="style.css" />
<style>
{
background-color: #202124;
color: #ffffff;
@font-face {
font-family: "FOT Aokane Std";
src: url("FOT-AokaneStd-EB.otf") format("opentype");
font-weight: normal;
font-style: normal;
}
body {
font-family: "FOT Aokane Std", sans-serif;
}
}
.heading {
text-align: center;
position: fixed;
width: 100%;
}
.footer {
position: fixed;
left: 0;
bottom:0;
width: 100%;
text-align: center;
}
a:link {
color: #8ab4f8;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: #c58af9;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #c58af9;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="heading">
<h1>code examples</h1>
</div>
<br><br><br><br>
<div>
<a href="ducklife">Duck Life</a>
<br><br>
<a href="ducklife2">Duck Life 2</a>
<br><br>
<a href="ducklife3">Duck Life 3</a>
<br><br>
<a href="ducklife4">Duck Life 4</a>
<br><br>
<a href="flappybird">Flappy Bird</a>
<br><br>
<a href="patapon2">Patapon 2: The Art of War</a>
<br><br>
<a href="thereisnogame">THERE IS NO GAME!</a>
<br><br>
<a href="worldstate">The World's State</a>
</div>
<p>(More coding examples coming soon!)</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScrPpGyGmim4_C9SvMDAnGU82RUQTxVnrCyaexzGuGzLxSx1Q/viewform?usp=header">Request Code Examples here!</a>
</body>
</html>