-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Random Quote Generator</title>
<script src="https://kit.fontawesome.com/98cfa14958.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fredericka+the+Great">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/quotebox.css">
</head>
<body>
<div id="box" class="box centered">
<div id="quote-box" class="quote-box">
<p id="text" class="quote-text"></p>
<p id="author" class="author-text"></p>
<div class="button-box">
<a href="https://twitter.com/intent/tweet" id="tweet-quote" class="tweet-quote">
<i class="fab fa-twitter twitter-logo"></i>
</a>
<button id="new-quote" class="button">Click me!</button>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="scripts/jquery.js" type="module"></script>
</body>
</html>