-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
47 lines (43 loc) · 3.25 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>The History of Tamriel</title>
<meta name="description" content="The History of Tamriel">
<link href="https://fonts.googleapis.com/css?family=Fondamento" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="main.css">
<script type=text/javascript src="animation.js"></script>
</head>
<div id="Header" class="Header">
<li><a href="/index.html" class="logo">The History of Tamriel</a></li>
<li><a href="#" class="TopNavBarButton">Map</a></li>
<li><a href="#" class="TopNavBarButton">About</a></li>
</div>
<div id="mySidenav" class="sidenav">
<div id="SidebarLinks" class="starthidden">
<a href="javascript:void(0)" id="Provinces" onclick="openProvinces()">Provinces ◢</a>
<div id="SidebarLinks2">
<a style="background-image: linear-gradient(90deg, rgb(50, 30, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/BlackMarsh.html">Black Marsh</a>
<a style="background-image: linear-gradient(90deg, rgb(60, 20, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/HighRock.html">High Rock</a>
<a style="background-image: linear-gradient(90deg, rgb(80, 20, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Hammerfell.html">Hammerfell</a>
<a style="background-image: linear-gradient(90deg, rgb(60, 40, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Valenwood.html">Valenwood</a>
<a style="background-image: linear-gradient(90deg, rgb(60, 70, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Elsweyr.html">Elsweyr</a>
<a style="background-image: linear-gradient(90deg, rgb(90, 90, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Cyrodiil.html">Cyrodiil</a>
<a style="background-image: linear-gradient(90deg, rgb(40, 90, 100) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/SummersetIsles.html">Summerset Isles</a>
<a style="background-image: linear-gradient(90deg, rgb(0, 40, 80) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Skyrim.html">Skyrim</a>
<a style="background-image: linear-gradient(90deg, rgb(70, 20, 70) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Morrowind.html">Morrowind</a><br>
</div>
</div>
<a href="javascript:void(0)" id="myclosebtn" class="closebtn noselect" onclick="openNav()">☰</a>
</div>
<div id="main">
<body>
<h1>About this Project:</h1>
<p>
This Project was made to improve our Webcoding capabilities and as such is not supposed to be a professional Wiki. It was made to visualize the History of the Continent "Tamriel" from the videogame series "The Elder Scrolls". If you are interested in the sourcecode of this project don't hesitate to visit the <a href="https://github.com/Katzenbiber/HistoryOfTamriel">GitHub</a> repository.
</p>
</body>
</div>
</html>