-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquote.html
25 lines (25 loc) · 869 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="quote.css">
<script src="quote.js" defer></script>
</head>
<body>
<div class="container">
<div class="header"><h1>Quote of the day</h1></div>
<div class="quotecontainer">
<div class="ql">❝</div>
<div class="quote">The best thing about education is that no one can take it away from you.</div>
<div class="qr">❠</div>
</div>
<div class="author">
<div class="dash">---</div>
<div class="name">Albert Einstein</div>
</div>
<div class="button"><button id="next">Next Quote</button></div>
</div>
</body>
</html>