-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.15 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A random quote generator machine">
<title>Random Quote Generator</title>
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker|VT323&subset=latin-ext,vietnamese" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.4/js/all.js"></script>
</head>
<body>
<main class="app">
<h1>Random Quote Generator!</h1>
<section class="quotes">
<i class="fa fa-quote-left quoteFont" aria-hidden="true"></i>
<div class="quote"></div>
<i class="fa fa-quote-right quoteFont" aria-hidden="true"></i>
<div class="quoteAuthor"> - <span id="author"></span></div>
</section>
<section class="controls">
<a class="twitter-share-button tweet" target="_blank">Tweet <i class="fab fa-twitter" aria-hidden="true"></i></a>
<button class="newQuote">New Quote</button>
</section>
</main>
<script src="scripts/index.js"></script>
</body>
</html>