-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.21 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 1.21 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
30
31
32
33
34
<!DOCTYPE html>
<html class="no-js" lang="en">
<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">
<title>Random Design Quote Machine</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.2.3/css/simple-line-icons.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="flex-container">
<div class="flex-item">
<section class="quote">
</section>
<div class="buttons">
<a class="twitter-share-button icon-social-twitter"
href="https://twitter.com/intent/tweet" target="_blank">
</a>
<button class="js-button button">New Quote</button>
</div>
</div>
</div>
<footer class="page-footer">
<p><strong>Random Design Quote Machine</strong></p><p>Built by <a href="http://anaumann.com">Andrew Naumann</a></p><p>API provided by <a href="http://quotesondesign.com/">quotesondesign</a></p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>