-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>Random Qoutes</title>
<link href = "https://fonts.googleapis.com/css? family= "lobster" rel= "stylesheet" type= "text/css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="wrapper">
<div id="quote-box">
<div class="quote-text">
<i class="fa fa-quote-left"> </i><span id="text"></span>
</div>
<div class="quote-author">
- <span id="author"></span>
</div>
<div class="buttons">
<a href="twitter.com/intent/tweet" class="button" id="tweet-quote" title="Tweet this quote!" target="_blank">
<i class="fa fa-twitter"></i>
</a>
<button class="button" id="new-quote">New quote!</button>
</div>
</div>
<div class="footer">
<i>
<h2>
By: <span class="text-orange">H</span>ernie Jabien
</h2>
</i>
</div>
</div>
<script src="https://kit.fontawesome.com/a8af25a7df.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>