-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtimeline.html
More file actions
45 lines (45 loc) · 1.02 KB
/
timeline.html
File metadata and controls
45 lines (45 loc) · 1.02 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
45
<!-- Your HTML code goes here -->
<!DOCTYPE html>
<html>
<head>
<style>
*{
background-color: black;
color:grey;
}
h1{
color: red;
}
p{
color: white;
}
img{
border: 15px red;
}
</style>
<title>My Page</title>
</head>
<body>
<h1>Ken Kaneki | Tokyo Ghoul</h1>
<p>This page is meant to show the events of the making off Tokyo Ghoul.</p>
<img src="images/kaneki-evolution.jpeg">
<ol>
<li>2011-2012: Kaneki's first fight with Amon is recorded in a journal in his bag.</li>
<hr>
<li>2015: Kaneki's birthday is December 20th.</li>
<hr>
<li>2014: Tokyo Ghoul: Past is released, which takes place before the main series and focuses on Kaneki's backstory.
</li>
<hr>
<li>2014: Tokyo Ghoul: Past is released, which takes place before the main series and focuses on Kaneki's backstory.
</li>
<hr>
<li>Age 21: Kaneki is at the start of Tokyo Ghoul: Re.
</li>
<hr>
<li>Age 29: Kaneki is at the end of Tokyo Ghoul: Re.
</li>
<hr>
</ol>
</body>
</html>