-
Notifications
You must be signed in to change notification settings - Fork 0
/
quotes.html
53 lines (48 loc) · 2.56 KB
/
quotes.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
<!DOCTYPE Html>
<html lang = "en">
<head>
<meta charset="UFT-8">
<meta name="viewpoint" content="width=device-width, initial-scale=1.0">
<title>Quotes</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/quotes.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Courgette">
<link rel="stylesheet" href="./css/all.css">
</head>
<body>
<!-- Navigation Bar -->
<ul>
<li><a href="index.html">Colour Change Button</a></li>
<li><a href="hex.html">Colour Change Button (With Hex Code)</a></li>
<li><a href="quotes.html">Random Quote</a></li>
<li><a href="counter.html">Counter</a></li>
<li><a href="Gallery.html">Gallery</a></li>
<li><a href="bakeryWebpage.html">Bakery Webpage Example</a></li>
<li><a href="calculator.html">Calculator</a></li>
<li><a href="clock.html">Clock</a></li>
<li><a href="budget.html">Budget App</a></li>
<li><a href="mortgage.html">Mortgage Calc.</a></li>
<li><a href="brickBreaker.html">Brick Breaker</a></li>
<li><a href="RSS.html">RSS Feed for BBC News</a></li>
<li><a href="WhackAMole.html">Whack A Mole</a></li>
<li><a href="todo.html">ToDo</a></li>
<li><a href="hangman.html">Hangman</a></li>
<li><a href="headsOrTails.html">Heads Or Tails</a></li>
<li><a href="plinko.html">Plinko</a></li>
</ul>
<div class="conainer">
<div class="row max-height align-items-center">
<div class="col-11 mx-auto col-md-6 quote-container p-5">
<button class="btn-outline-primary text-capitalize my-4 d-block mx-auto" id="generate-btn">generate quote</button>
<h3 class="text-muted"><span class="quote-icon mr-3"><i class="fas fa-quote-left fa-3x"></i></span><span id="quote">Lorem
ipsum dolor sit amet consectetur, adipisicing elit. Tenetur sint iste optio placeat dolor labore, reprehenderit
ipsum aspernatur blanditiis maiores.</span></h3>
<h5 class="text-right text-capitalize author">-<span class="quote-author ml-3 ">author</span></h5>
</div>
</div>
</div>
<script src="./js/jquery-3.4.1.min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/quotes.js"></script>
</body>
</html>