-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (36 loc) · 1.98 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
<!doctype html>
<html lang="en">
<head>
<title>QOTD</title>
<link rel="shortcut icon" type="image/png" href="favicon.png">
<!-- Required Meta Tags -->
<meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap, Mod, & Animate CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="bootmod.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
</head>
<body class="bg-light my-n5">
<!-- Big Ol` Wrapper -->
<div class="big-ol-wrapper bg-prep-img animated fadeIn slow slight-delay">
<!-- Sub-body Container -->
<div class="container-fluid my-xs-1 my-sm-2 my-md-4 my-lg-5 py-xs-1 py-sm-2 py-md-4 py-lg-5">
<!-- Quote -->
<div class="row align-items-center mx-xs-4 mx-0 animated zoomIn fast">
<div class="d-xs-none col-sm-1 col-md-2"></div>
<div class="col py-1 py-md-2 py-lg-3 px-0 brush-black text-light" id="qotd">
<span class="d-block display-4 pb-2 animated fadeIn slower" id="quote"></span>
<span class="d-block display-5 lead font-italic text-right animated fadeIn slow delay-1s" id="author"></span>
</div>
<div class="d-xs-none col-sm-1 col-md-2"></div>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- Custom JS -->
<script src="qotd.js"></script>
</body>
</html>