-
-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 642 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 642 Bytes
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 name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quote Generator App</title>
<link rel="stylesheet" href="./style.css" />
<script defer src="quotes.js"></script>
</head>
<body>
<div class="container">
<img
src="https://img.icons8.com/ios-filled/50/f39c12/quote-left.png"
alt="quote mark"
class="quote-icon"
/>
<h1>hello there</h1>
<p id="quote"></p>
<p id="author"></p>
<button type="button" id="new-quote">New quote</button>
</div>
</body>
</html>