-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (21 loc) · 956 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
28
29
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Random Quote Machine</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="quote_box">
<div id="quote-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</div>
<p id="author">-Author</p>
<div id=buttons>
<button onclick="getQuote()" id="quote_button" class="btn btn-default" type="button">Random quote !</button>
<a href="#" target="_blank" id="tweet-button" class="btn btn-info"><i class="fa fa-twitter-square" aria-hidden="true"> Tweet it !</i></a>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>