-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 928 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quote of the Day</title>
<link rel="shortcut icon" href="img/quot.png" type="image/x-icon">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body style="background-color: #FCFAEE;">
<div class="container text-center mt-5 pt-5">
<h1>Quote of the Day</h1>
<p class="mt-2">Press the button below to receive a random quote!</p>
<button class="rounded-3 fs-4 mt-3" onclick="randomQuot()">New Quot</button>
<div >
<p id="quoteOutput" class="pt-3"></p>
<p id="authorOutput" class="pt-2"></p>
</div>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>