-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.37 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
<!DOCTYPE>
<html>
<head>
<title> Random quote generator</title>
<meta charset = "utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class = "quote-box">
<div class = "box-heading">
<h1> Quote of the day </h1>
</div>
<div class = "box-content">
<div class="quote-container">
<i class="fa fa-quote-left" aria-hidden="true"></i>
<div class="quote"> <p class="quote-text">The problem with the world is that the intelligent people are full of doubts, while the stupid ones are full of confidence.</p>
</div>
<i class="fa fa-quote-right" aria-hidden="true"></i>
<div class = "origin"> <p class="origin-text">Charles Bukowski</p>
</div>
</div>
</div>
<div class="button-container">
<div class="click-to-tweet"><a target="_blank" href=""><i class="fa fa-twitter fa-1.5x"></i> Click to tweet</i></a></div>
<p>or</p>
<button class = "new-quote"> Click here for more inspiration </button>
</div>
<div id = "created-by"> by Marina Sideri </div>
</div>
</body>
</html>