-
Notifications
You must be signed in to change notification settings - Fork 0
/
Game Info.html
75 lines (69 loc) · 2.07 KB
/
Game Info.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<title>Twisted Creations Homepage: Game Info</title>
<header>
<hgroup style="
background-color: #18191ab6;
font-family: Arial, Helvetica, sans-serif;
font-size: 30px;
color: white;
width: 70%;
border-radius: 15px;
margin: auto;
">
<strong style="font-size: 40px; margin-left: 40px">Game Info</strong>
<a href="index.html" style="text-decoration: none; color: #ffffff">
<small style="margin-left: 80px">Homepage</small>
</a>
<a href="About us.html" style="text-decoration: none; color: #ffffff">
<small style="margin-left: 80px">About us</small>
</a>
<a href="Our Team.html" style="text-decoration: none; color: #ffffff">
<small style="margin-left: 80px">Our Team</small>
</a>
</hgroup>
</header>
</head>
<p align="center" style="margin-top: 100px">
Abandoned: The Asylum of Madness (ATAM) is the first installment for the
"Twisted Childhood Memories" series developed by the Twisted Creations team.
</p>
<h2 style="margin-top: 25px">
Twisted Childhood Memories Franchise titles (as of rn)
</h2>
<ol style="margin-top: 15px">
<ul>
<li>Abandoned: The Asylum of Madness</li>
<li>???</li>
</ul>
</ol>
<style>
p {
background-color: #18191ab6;
border-radius: 15px;
padding: 20px;
margin: auto;
}
ol {
background-color: #18191ab6;
border-radius: 15px;
padding: 20px;
margin: auto;
}
h2 {
background-color: #18191ab6;
border-radius: 15px;
padding: 20px;
margin: auto;
}
body {
background-image: url("./Images/Base-Image.png");
background-repeat: no-repeat;
background-size: cover;
}
</style>
</html>