-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 2.91 KB
/
index.html
File metadata and controls
61 lines (61 loc) · 2.91 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Quote Loft</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
<link rel="manifest" href="images/favicon/site.webmanifest">
<link rel="mask-icon" href="images/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="images/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="images/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="wrapper">
<div id="closed-sidebar">☰</div>
<a href="./index.html"><img src="./images/1x/Artboard 1.png" id="logo"></a>
<aside class="sidebar">
<div id="open-sidebar">×</div>
<form>
<input
type="text"
class="keyword-query"
placeholder="Search quote by keyword"
/>
<input type="submit" name="Submit" class="submit-btn"/>
</form>
<button class="random">Random Quote</button>
</div>
</aside>
<div class="main">
<div class="images"></div>
<div class="quotes"></div>
</h2>
</div>
</div>
<footer>
<h6 class="design-by">© 2019 Corey Morrison</h6>
<button id="openModal">More Info</button>
<div id="modal">
<div class="modal-textbox">
<span class="closeBtn">×</span>
<p class="modal-text">The purpose of this first project is to construct a representation of my current learning of different languages through a viable web application. The application begins working upon loading displaying a random quote, from an API hosted by FavQs. Each quote has keywords associated with it, which I utilize to run through another API hosted by Unsplash. This enables the application to target images with a similar tag. The application also allows the user to search for a quote based on a keyword.</p>
<a href="tel:270-535-8786" class="contact-info">Contact: 270-535-8786</a>
<a href = "mailto:corey.neil.morrison@gmail.com?subject = Contact&body = Message" class="contact-info">E-MAIL</a>
</div>
</div>
</footer>
</body>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"
></script>
<script src="./js/app.js"></script>
</html>