-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquote.html
30 lines (30 loc) · 890 Bytes
/
quote.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
27
28
29
30
<!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" />
<link rel="stylesheet" href="quote.css" />
<script src="quote.js" defer></script>
<title>Document</title>
</head>
<body>
<div class="container">
<div class="header">
<h2>Kanye West Quotes</h2>
</div>
<div class="main-content">
<div class="text-area">
<span class="quote">
"I do the very best i know how - the very best i can; and i mean to
keep on doing so until the end."
</span>
</div>
<div class="person">Kanye West</div>
<div class="button-area">
<button id="new-quote">New Quote</button>
</div>
</div>
</div>
</body>
</html>