-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (36 loc) · 1.33 KB
/
index.html
File metadata and controls
49 lines (36 loc) · 1.33 KB
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
<!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/3.3.7/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css'>
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Mogra'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<h2 class="text-center">Random Quote Generator</h2>
<h4 class="text-center" style="margin-top:10px;">By Freeda Vales</h4>
</div>
<div id="quote-block" class="text-justify">
<div class="quote-text">
<i class="fa fa-quote-left"> </i><span id="text"></span>
</div>
<div class="quote quoteClass text-center lead">
</div>
<div class="author">
</div>
<div class="row">
<span class="col-xs-6">
<button class="btn-block col-xs-6" id="newQuote">More</button>
</span>
<span class="col-xs-6">
<button class="btn-block col-xs-6 " id="tweet"><i class="fa fa-twitter"></i>Tweet</button>
</span>
</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>