-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 1.04 KB
/
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>Quotes App</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<h1><i class="fas fa-quote-left"></i> Quote of the Day <i class="fas fa-quote-right"></i></h1>
<p class="description">Press the button below to receive a random quote!</p>
<button id="changeBtn" class="btn"><i class="fas fa-sync-alt"></i> New Quote</button>
<div class="quote-box">
<p class="quote-text" id="quoteOutput"></p>
<p class="quote-author" id="authorOutput"></p>
</div>
</div>
<script src="JS/index.js"></script>
</body>
</html>