-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 897 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>Qoute Generator 📖</title>
<link rel="stylesheet" href="./styles.css">
<script src="./script.js" defer></script>
</head>
<body>
<div class="container">
<div class="header">
<h1>JavaScript Qoute Generator</h1>
</div>
<div class="quote-container">
<div>
<p class="quote">"If you look at what you have in life, you'll always have more. If you look at what you don't have in life, you'll never have enough."</p>
<div class="person">oprah winfrey</div>
</div>
<button type="button">New Quote</button>
</div>
</div>
</body>
</html>