-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.html
More file actions
103 lines (84 loc) · 4.73 KB
/
About.html
File metadata and controls
103 lines (84 loc) · 4.73 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CS340: Final Project</title>
<!--
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="stylesheet" type="text/css" href="style.css" />
-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- Add to home screen for apple & android devices -->
<link rel="apple-touch-icon" href="img/webicons/Linkhub.png">
<link rel="icon" sizes="192x192" href="img/webicons/Linkhub_icon.png">
<link href="css/index_CSS.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Josefin+Slab' rel='stylesheet' type='text/css'>
</head>
<body background="http://www.zryxsw.com/data/out/87/1133884-the-elder-scrolls-wallpaper.png">
<header class = "navbar-inverse" role = "banner">
<div class= "container">
<nav role = "navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php">HOME</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="About.html">About <span class="sr-only">(current)</span></a></li>
<li><a href="Characters.php">Characters <span class="sr-only">(current)</span></a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Provinces<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="blackmarsh.html">Black Marsh</a></li>
<li><a href="cyrodiil.html">Cyrodiil</a></li>
<li><a href="elsweyr.html">Elsweyr</a></li>
<li><a href="hammerfell.html">Hammerfell</a></li>
<li><a href="highrock.html">High Rock</a></li>
<li><a href="morrowind.html">Morrowind</a></li>
<li><a href="skyrim.html">Skyrim</a></li>
<li><a href="smmerset.html">Summerset Isles</a></li>
<li><a href="valenwood.html">Valenwood</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</div>
</header>
<div>
<h1> Welcome to Tamriel </h1>
<h3>Tamriel, also known as Dawn's Beauty in Aldmeris, Starry Heart in Ehlnofex,Starry Heart of Dawn's Beauty, Taazokaan (Dovahzul: TAaZOKAaN),and the Arena, is one of the several continents located on Nirn. It is located on the planet of Nirn, which is the mortal realm of the finite and the partial, as opposed to the immortal realms of the infinite and the absolute in Aetherius and Oblivion. Nirn is at the center of Mundus, which is the mortal realm, and is the elven root for the human word "mundane", meaning ordinary. Mankar Camoran once said that Tamriel is an extension of the realm Oblivion, although this could just be the ramblings of the Mythic Dawn. In terms of size, Tamriel is very large and is divided into nine provinces. The name Tamriel is said to mean Starry Heart, while it is also Elven for Dawn's Beauty.</h3>
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="scripts/main.js"> </script>
<script>
$(function(){
$('#p1').on('click',function(){
$('#p1b').slideToggle(200);
});
});
</script>
</body>
</html>