This repository was archived by the owner on Jul 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.85 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home / Paladins Maps</title>
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/cover.css">
<link rel="stylesheet" href="./css/viewer.min.css">
</head>
<body class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand">Paladins Maps</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link active" href="index.html">Home</a>
<a class="nav-link" href="maps.html">Maps</a>
</nav>
</div>
</header>
<main role="main" class="inner cover">
<h1 class="cover-heading">Paladins Maps</h1>
<p class="lead">
We're providing simple top-down view maps for you to explore to up your game and learn the maps.
</p>
<p class="lead">
<a href="maps.html" class="btn btn-lg btn-secondary">View Maps</a>
</p>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Site by <a href="https://paladinsdev.com">Paladins Dev</a>. All maps and assets are property of Hi-Rez Studios and Paladins.</p>
</div>
</footer>
</div>
<script src="./js/jquery-3.3.1.min.js"></script>
<script src="./js/popper.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/viewer.min.js"></script>
</body>
</html>