-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 884 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 884 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Random quote machine</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<header>
<h1>Random quote machine</h1>
</header>
<div class="box">
<i class="fa fa-quote-left"></i>
<h2 class="quote"></h2>
<h4 class="author"></h4>
</div>
<div>
<a href="#" target="_blank" class="btn tweet"><i class="fa fa-lg fa-twitter"></i> Tweet</a>
<button class=" btn new-quote-btn">New quote</button>
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="scripts.js"></script>
</body>
</html>