-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (52 loc) · 1.69 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Random Quote Machine</title>
<link href="https://fonts.googleapis.com/css?family=Medula One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<body>
<div class="container-fluid">
<div class="row text-center">
<div class="col-xs-12">
<h1>Random Quote Machine</h1>
</div>
</div>
<div class="row text-center">
<div class="col-xs-12 well">
<p class="quote-text">Generate and tweet out random quotes!</p>
<p class="quote-author"></p>
</div>
</div>
<div class="row text-center">
<div class="col-xs-12">
<ul class="list-inline">
<li>
<button class="btn btn-default btn-lg twitter-link">
<i class="fa fa-twitter fa-fw" id="tweet"></i>Tweet Quote
</button>
</li>
<li>
<button class="btn btn-default btn-lg"><i class="fa fa-quote-left fa-fw"></i>New quote</button>
</li>
</ul>
</div>
</div>
</div>
<footer class="navbar navbar-fixed-bottom">
<div class="container">
<h5 class="text-center">
Coded by Adam Harte
</h5>
</div>
</footer>
</body>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>