forked from brittanyrw/emojipages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (61 loc) · 2.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html class="no-js" lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-97195950-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-97195950-6');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>EmojiPages</title>
<meta name="description"
content="A listing of books depicted through emojis.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Kreon:700|Open+Sans:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<link rel="icon" href="favicon.ico" type="image/gif" sizes="16x16">
</head>
<body>
<main>
<header>
<h1>EmojiPages</h1>
<div class="heading-content">
<div class="header">
<h2>A listing of books depicted through emojis. <img draggable="false" class="emoji" alt="💖"
src="https://twemoji.maxcdn.com/v/12.1.3/72x72/1f496.png"></h2>
<p>Click on the emojis to reveal the book name, year and author!</p>
</div>
<div class="contribute-callout">
<p>Want to add to EmojiPages? Head to Github! <img draggable="false" class="emoji" alt="✨"
src="https://twemoji.maxcdn.com/v/12.1.3/72x72/2728.png"></p>
<a href="https://github.com/brittanyrw/emojipages" target="_blank">Contribute</a>
</div>
</div>
</header>
<section class="filters">
<div class="filters-heading">
Filter By Genre:
</div>
<div class="filters-options">
<select name="genre-filter" id="genre-filter">
<option value="show-all" selected>All genres</option>
</select>
</div>
</section>
<section id="books"></section>
<section id="message"></section>
<footer>
<p>EmojiPages currently has <span></span> books and plays. 💖</p>
</footer>
</main>
<script src="https://twemoji.maxcdn.com/v/latest/twemoji.min.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="data.js"></script>
<script src="app.js"></script>
</body>
</html>