-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquote.html
More file actions
23 lines (22 loc) · 1.23 KB
/
quote.html
File metadata and controls
23 lines (22 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Quotes Generator Using Free API</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Agu+Display&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="quote.css">
</head>
<body>
<div class="container">
<div class="content">
<p id="thoughts">I ran as fast as I could for as long as I could ,from a past that no longer defined me,toward a future undetermined.All I knew was that there would be pain and there would be purpose.<br>And that I was ready.</p>
<h4 id="author">DAVID GOGGINS</h4>
<button id="getbtn"> Get Quote </button>
</div>
</div>
<script src="quote.js"></script>
</body>
</html>