-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 2.04 KB
/
index.html
File metadata and controls
51 lines (51 loc) · 2.04 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
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Random Quote Machine</title>
<!-- font-awesome stylesheet for icons -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- bootstrap css stylesheet -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- custom css stylesheet -->
<link rel="stylesheet" href="./css/screen.css">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<!-- jquery and bootstrap cdn js file -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>
<body class="col">
<div class="container">
<h1 class="text-center name"><b>The Random Quote Machine</b></h1>
<div class="row">
<div class="col-md-6 col-md-push-3">
<div class="quote text-center">
<h2>
<i class="fa fa-quote-left"></i>
<span id="data">Click New Quote button to get a quote.</span>
</h2>
<div class="pull-right">
<h4>-author</h4>
</div>
<!-- Adding twitter button and get new quote button -->
<br>
<br>
<div class="socialmedia pull-left">
<a href="#" id="twitter" class="btn btn-lg col" target=_blank>
<i class="fa fa-twitter"></i>
</a>
</div>
<div class="col">
<a href="javascript:;" id="newquote" class="btn btn-lg pull-right col">New Quote</a>
</div>
<br>
</div>
</div>
</div>
<br>
<br>
<p class="text-center"><a href="http://howtocoder.com" target="_blank">by HowToCoder</a></p>
</div>
<script src="./js/main.js"></script>
</body>
</html>