-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (40 loc) · 1.5 KB
/
index.html
File metadata and controls
63 lines (40 loc) · 1.5 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
62
63
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>RandomQuoteGenerator</title>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<link href='https://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"/>
<div class=container-fluid>
<center>
<h1 class="teal-text center-text ">
Quote of the day
</h1>
<div class="well">
<p id="quote" class="center-text">
<q> Where there's a will, there is a bill
</q>
</p>
<p class="center-text">
-
<span id="author" >
Shrestha
</span>
</p>
<button id="next" class="btn btn-lg btn-primary ">
Another one? It's free!!
</button>
<a id="tweet" href="" class="twitter-share-button" data-size="large" data-lang="en" data-show-count="false" target="_blank" data-size="large">
<img src="https://g.twimg.com/dev/documentation/image/Twitter_logo_blue_48.png" width="48" height="48" alt="Twitter bird logo blue 48x48"></a>
</div>
</center>
</div>
<script src='https://code.jquery.com/jquery-2.2.4.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>