-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 873 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
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>qoute</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<section class="">
<div class="continar text-center py-5">
<h1 class="my-3">Quote of the Day</h1>
<h3 class="my-3">Press the button below to recieve a random quote!</h3>
<button type="button" class="" id="newQoute">New Quote</button>
<p class="" id="qoute">
“Be yourself; everyone else is already taken.”
</p>
<p class="" id="auther">"― Oscar Wilde"</p>
</div>
</section>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>