-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquote.html
More file actions
29 lines (24 loc) · 713 Bytes
/
Copy pathquote.html
File metadata and controls
29 lines (24 loc) · 713 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
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Random Quote Generator</title>
<link rel="stylesheet" type="text/css" href="quote.css">
<script src="quote.js"></script>
</head>
<body>
<div class="container-fluid container">
<div class="well" id="color-change">
<h1>Quote Generator</h1>
<div id="button btn">
<!-- <button onclick="myQuote(), changeBackground()">Click Here</button> -->
</div>
<hr>
<p id="my-quote">"Sample quote" --Tanisha Hampden<p>
<button id="start">Click Here</button>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet" target="_blank">
<button type="button" class="btn btn-primary">Tweet it!</button>
</a>
</div>
</div>
</body>
</html>