-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
104 lines (92 loc) · 2.25 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Final Fantasy X Any% Guides">
<title>FFX Any% Guides</title>
<style media="screen">
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@700&family=Open+Sans&display=optional');
* {
padding: 0;
margin: 0;
font-family: "Open Sans", sans-serif;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
color: white;
background-color: #222;
}
h1 {
font-family: 'Crimson Text', serif;
font-size: 2.5em;
}
h2 {
font-family: 'Crimson Text', serif;
font-size: 1.5em;
margin-top: 0.7em;
margin-bottom: 0.3em;
}
a:link {
color: cyan;
}
a:visited {
color: lightblue;
}
p {
font-size: 1.05em;
line-height: 1.55em;
margin-top: 0.7em;
}
#desc {
flex-direction: column;
text-align: left;
margin: 3em auto auto auto;
width: 75%;
min-width: 55ch;
max-width: 850px;
font-weight: 300;
letter-spacing: 0.01em;
}
li {
padding-bottom: 10px;
margin-left: 1.25em;
}
</style>
</head>
<body>
<div id="desc">
<h1 style="text-align:center">Final Fantasy Speedrun Guides</h1><br>
<p>
Welcome to the Final Fantasy Speedrun Guide Collection.<br>
This is the work of a lot of very amazing people that helped in the creation of these Guides in various ways.<br>
</p>
<h2>Games:</h2>
<ul>
<li>
FFX<br>
- <a href="">Any%</a><br>
- <a href="">No Sphere Grid</a>
</li>
<li>
FFXII<br>
- <a href="">Any%</a>
</li>
<li>
FFX XIII<br>
- <a href="">Any%</a><br>
- <a href="">All Missions</a>
</li>
<li>
FFX XIII-2<br>
- <a href="">Any%</a>
</li>
<li>
FF WOFF<br>
- <a href="">Any%</a>
</li>
</ul>
</div>
</body>
</html>