-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRandomQouteGenerator.html
More file actions
63 lines (43 loc) · 1.51 KB
/
RandomQouteGenerator.html
File metadata and controls
63 lines (43 loc) · 1.51 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
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Random Quote Generator</title>
<!-- To ensure compatability with various devices !-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width">
<!-- Including Amatic Google Font -->
<link href='http://fonts.googleapis.com/css?family=Poiret One' rel='stylesheet'>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Various stylesheets used -->
<link rel="stylesheet" href='css/main.css'>
<!-- font-awesome for the heart !-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.2/css/font-awesome.min.css">
</head>
<body>
<div class="text-heading text-center container">
Random Quote Generator
</div>
<div class='quote-box' id='qt-box'>
Click on the button to get a Random Programming Quote
</div>
<div id='author-box'>
</div>
<br>
<br>
<div class="btn">
<a href="#" id="button">Generate New Quote</a>
</div>
<footer class="footer-text" id="footer">
<div>
Made with <i class="fa fa-heart" aria-hidden='true'></i> by Rahul Baboota
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<!-- Including main.js -->
<script src='js/main.js'></script>
</body>
</html>