-
Notifications
You must be signed in to change notification settings - Fork 903
/
Copy pathindex.html
27 lines (22 loc) · 826 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
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quote Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<h2 id="heading">Quote of the Day</h2>
<p id="quote">I am of the opinion that my life belongs to the community, and as long as I live it is my
privilege to do for it whatever I can.</p>
<span id="author"></span>
<div id="buttons">
<button id="btn1">New Quote</button>
<button id="btn2"><img src="logo.png" alt="Twitter Icon" id="twitterIcon"><a href='https://twitter.com/home' target="_blank">Tweet</a></button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>