-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
41 lines (35 loc) · 1.65 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
<html>
<head>
<title>Random quotes</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="hello">
<div class="container">
<center><h1 class="well"><img src="img/logo/logo.svg" height="10%" alt=""> Random Quote Machine</h1></center>
</br></br></br></br>
<center><div class="card">
<p id="quote" class="quote"></p>
<p id="author" class="author"></p>
</div></center>
<center><ul class="list-inline">
<li class="btn btn-info" id="get-quote"><i class="fa fa-quote-left"></i>Next Quote</li>
<li class="btn btn-success share-quote" id="share-quote"><i class="fa fa-share-square"></i>Share</li>
</ul>
<ul class="list-inline" id="font">
<li><a href=""><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://github.com/Rupeshiya"><i class="fa fa-github"></i></a></li>
<li><a href=""><i class="fa fa-medium"></i></a></li>
<li><a href="https://www.linkedin.com/in/rupesh-jha-7aab6b155/"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://twitter.com/Rupeshkrj2"><i class="fa fa-twitter-square"></i></a></li>
</ul>
</center>
<center><footer class="me"><b>Coded by:-</b><i><b>rupeshiya</b></i></a></footer></center>
<script src="Random.js"></script>
</div>
</body>
</html>