-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (21 loc) · 972 Bytes
/
index.html
File metadata and controls
36 lines (21 loc) · 972 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
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Random Quote Generator</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet'>
</head>
<body>
<div class='container text-center' >
<h1>Random Quote Generator</h1><br><br><br>
<button class='btn-primary btn'>New Quote</button>
<a class='btn btn-primary' id='tweet' href='#' target='_blank' role='button'><i class="fa fa-twitter fa-lg"></i> Tweet</a><br><br><br>
<p id='quote'></p>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>