-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (55 loc) · 1.77 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
<!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</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">Homepage</strong>
<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>
<a href="Game Info.html" style="text-decoration: none; color: #ffffff">
<small style="margin-left: 80px">Game Info</small>
</a>
</hgroup>
</header>
</head>
<subheader align="center">
<h2 align="center" style="margin-top: 150px">
Welcome to our website! feel free to take a look around
</h2>
<h2 align="center" style="margin-top: 5px">
This site is currently still a wip! so most parts of the site might be
broken or unfinished. everything on this site is subject to change!
</h2>
</subheader>
<style>
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>