-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (47 loc) · 2.07 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="favicon.ico">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="javascripts/wikiquote-api.js"></script>
<link rel="stylesheet prefetch" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Cabin+Sketch:400,700">
<link rel="stylesheet" href="style.css">
<title>Random Quote Machine</title>
</head>
<body>
<!-- Begin page content -->
<main role="main" class="container px-0 text-center">
<header class="d-flex w-100">
<div id="author-nav-button" class="w-10">☰</div>
<h1 class="w-90 m-auto">Random Quotes</h1>
</header>
<blockquote class="blockquote text-center px-3"">
<p class="mt-5 mb-0" id="quote" ></p>
<div class="blockquote-footer mb-3"></div>
</blockquote>
<button type = "button" class = "btn btn-lg btn-secondary mt-3 mb-4">New Quote</button>
<a class="btn btn-lg btn-secondary mt-3 mb-4" href="#" role="button" id="tweet"><i class="fab fa-twitter"></i> Tweet</a>
<br>
<div id="author-buttons">
<!-- buttons added using js -->
</div>
<!-- Following nav is for off-canvas menu -->
<nav class="side-nav">
<a href="#" class="close-author-nav-menu">×</a>
<!-- items added using js -->
</nav>
</main>
<footer class="footer w-100">
<div class="container text-center">
<i class="far fa-copyright"></i> 2018 SARA SALEEM. ALL RIGHTS RESERVED
</div>
</footer>
<script src="javascripts/app.js"></script>
</body>
</html>