-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.11 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>
<head>
<meta charset="utf-8">
<title>Random Quote Machine</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Alegreya:700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:400,400i" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<div class="container">
<header>
<h1 class="main-heading">Random Quote Machine</h1>
<h3 class="subheading">Falling into your doubts? Check these out :)</h3>
</header>
<section class="random-quotes">
<div class="buttons">
<input id="click-btn" class="quotes-btn" type="button" value="New Quote">
<a id="tweet-btn" class="quotes-btn" target="_blank">Tweet Me!</a>
</div>
<div id="quotes-wrapper" class="quotes-wrapper"></div>
</section>
<footer class="footer">
<small>© Dina Hafez 2017</small>
</footer>
</div>
<script src="js/script.js"></script>
</body>
</html>