-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (60 loc) · 2.74 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
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<!-- Meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Comfortaa|Cookie|Dancing+Script|Source+Serif+Pro" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Random Quote Machine</title>
</head>
<body>
<header>
<h1 class="text-center">Random Quote Machine</h1>
</header>
<main>
<div class="container quote-div">
<div class="row">
<div class="col-md-3 col-xs-0"></div>
<div class="col-md-6 col-xs-12 quote-box">
<div class="quotes text-center">
<p id="quote-id"><span class="quote" id="a-quote"><i class="fa fa-quote-left"></i> If you live each day as if it was your last someday you'll most certainly be right <i class="fa fa-quote-right"></i></span></p>
</div>
<div class="author text-right">
<p id="author-id"><span class="authors">- Steve Jobs</span></p>
</div>
<!-- Button section begins from here -->
<div class="container-fluid button-section">
<div class="row">
<div class="col-md-6 col-xs-6">
<button class="btn buttons tweet-quote" id="button1"><i class="fa fa-twitter fa-2x"></i></button>
</div>
<div class="col-md-6 col-xs-6 text-right">
<button class="btn btn-block buttons new-quote" id="button2"> New Quote</button>
</div>
</div>
</div>
</div>
<div class="col-md-3 col-xs-0"></div>
</div>
</div>
</main>
<footer class="text-center">
<div id="footer">
<i class="fa fa-code"></i> by <a href="https://twitter.com/MdAbuZafar19">Zafar</a>
</div>
</footer>
<!-- Custom script -->
<script src="script.js" type="text/javascript"></script>
</body>
</html>