-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
154 lines (144 loc) · 7.64 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="A site for the fellowship of Armings">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Armings Quest</title>
</head>
<body>
<header class="index-header container-fluid fixed-top">
<!-- Navbar here!-->
<!-- Navbar copied from Bootstrap documentation and edited to fit my needs. https://getbootstrap.com/docs/4.6/components/navbar/ -->
<div class="row">
<div class="col-12 nav-index">
<nav class="navbar navbar-expand-md">
<span class="navbar-brand mb-0 h1">Armings Quest</span>
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false"
aria-label="Toggle navigation">
<i class="bi bi-arrows-expand" style="color: aliceblue;"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link active" href="#">Home <span class="sr-only">(current)</span></a>
<div class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown"
aria-expanded="false">
Characters
</a>
<div class="dropdown-menu">
<!-- This leads to the character icons! -->
<a class="dropdown-item" href="#hero-nav">The Fellowship</a>
<div class="dropdown-divider"></div>
<!-- Popover code from https://getbootstrap.com/docs/4.6/components/popovers/ -->
<!-- This stuff is coming later. -->
<span class="d-none d-md-block" data-toggle="popover" data-trigger="hover"
data-content="Coming Soon!">
<a class="dropdown-item disabled" href="#">Allies of the Fellowship</a>
</span>
<span class="d-none d-md-block" data-toggle="popover" data-trigger="hover"
data-content="Coming Soon!"><a class="dropdown-item disabled" href="#">Other</a>
</span>
<!-- The above stuff is coming soon! -->
</div>
</div>
<!-- History coming soon! -->
<span class="d-none d-md-block" data-toggle="popover" data-trigger="hover"
data-content="Coming Soon!"><a class="nav-link disabled" href="history.html">History</a>
</span>
</div>
</div>
</nav>
</div>
</div>
<!-- Navbar end. -->
</header>
<!-- Section for the Hero Image! The image is only visible on Medium and larger screens. -->
<div class="container-fluid" id="group-shot">
<div class="row d-none d-md-block">
<div class="col-12 hero-image">
</div>
</div>
<div class="row d-block">
<div class="col blurb text-center">
<p>Welcome! Here you'll find information on the group of adventurers affiliated with Armings, a small
settlement hidden within the Neverwinter Woods.</p>
</div>
</div>
</div>
<!-- Hero Image section end. -->
<!-- Section for character nav bar thing -->
<section class="container-fluid">
<!-- This section has four centred icons leading to each of the character bios.-->
<div class="container bio-container content-container">
<div class="row">
<div class="col-12 text-center">
<h3>Meet the Fellowship!</h3>
</div>
</div>
<div class="row" id="hero-nav">
<div class="col-6 col-md-3 text-center charnav-index-icon" id="syn-icon">
<a href="bell.html">
<figure class="figure">
<img src="assets/images/bell_bust.png" class="rounded-circle" height="100" width="100"
alt="Bell (Syn'Agonafree)">
<figcaption class="figure-caption">Bell</figcaption>
</figure>
</a>
</div>
<div class="col-6 col-md-3 text-center charnav-index-icon" id="corlan-icon">
<a href="corlan.html">
<figure class="figure">
<img src="assets/images/corlan_bust.png" class="rounded-circle" height="100" width="100"
alt="Corlan Falster">
<figcaption class="figure-caption">Corlan</figcaption>
</figure>
</a>
</div>
<div class="col-6 col-md-3 text-center charnav-index-icon" id="sun-icon">
<a href="sun.html">
<figure class="figure">
<img src="assets/images/sun_bust.png" class="rounded-circle" height="100" width="100"
alt="Sun Mullnir">
<figcaption class="figure-caption">Sun</figcaption>
</figure>
</a>
</div>
<div class="col-6 col-md-3 text-center charnav-index-icon" id="bao-icon">
<a href="subao.html">
<figure class="figure">
<img src="assets/images/subao_bust.png" class="figure-img img-fluid rounded-circle"
height="100" width="100" alt="Subao">
<figcaption class="figure-caption">Subao</figcaption>
</figure>
</a>
</div>
</div>
</div>
</section>
<!-- Character icon section end. -->
<!-- Footer -->
<footer class="footer container-fluid fixed-bottom">
<div class="row">
<div class="col-12">
<div class="float-right">Copyright Gabriel Eboreime 2022 - 2022</div>
</div>
</div>
</footer>
<!-- Footer end. -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.1/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.min.js"></script>
<!-- Copied from the popover documentation on Bootstrap. https://getbootstrap.com/docs/4.6/components/popovers/ -->
<script>
$(function () {
$('[data-toggle="popover"]').popover()
})
</script>
</body>
</html>