-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Easy RPG System 1.0</title>
<meta name="description" content="The Easy RPG System 1.0">
<meta name="author" cotent="Stephen and Marjorie">
<link href="https://fonts.googleapis.com/css?family=Do+Hyeon" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"/>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">The Easy RPG System 1.0</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="profile.html">Profile</a></li>
<li><a href="characters.html">Characters</a></li>
</ul>
</div>
</nav>
<div class="containter-fluid">
<div class="row">
<h1 id="page-title" class="text-center text-primary">The Easy RPG System 1.0</h1>
</div>
<div class="row">
<div class="text-center"><a href="login.html"><button class="btn btn-primary">Login</button></a></div>
</div>
<div class="row">
<h2 class="text-center text-primary">A Simple System for Quick and Easy RP Games</h2>
</div>
<div class="row">
<div class="col-m-3"></div>
<div class="col-m-6 col-xs-12"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p></div>
<div class="col-m-3"></div>
</div>
</div>
</body>
</html>