-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 820 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Quote Generator</title>
<script src="https://kit.fontawesome.com/28c6bf77a9.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="heading">Random Quote Generator</h1>
<h2 class="quote">
<i class="fa-sharp fa-solid fa-quote-left"></i>
<span id="quote">Just say 'ok' and go ahead</span>
<i class="fa-solid fa-quote-right"></i>
</h2>
<p class="author" id="author"> ~ Sahil Jawale</p>
<button class="btn" id="btn">Get a Quote</button>
</div>
<script src="script.js"></script>
</body>
</html>