forked from HackYourFuture-CPH/emoji-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (46 loc) · 1.23 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css?family=Montserrat"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/styles/main.css" />
</head>
<body>
<header>
<section class="center title">
Emojiiiiii
</section>
</header>
<main>
<section class="center content">
<div class="search">
<span><i class="fa fa-search"></i></span>
<input type="text" id="search-input" />
</div>
<div class="categories">
<select id="search-categories">
<option value="all">All categories</option>
</select>
</div>
</section>
<section class="emoji-view">
<section class="emojiList">
<h2>clicked emoji to copy</h2>
<ul></ul>
</section>
<section class="favoriteList">
<h2>Favorites</h2>
<ul></ul>
</section>
</section>
</main>
<script src="scripts/main.js"></script>
<script src="scripts/copy-to-clipboard.js"></script>
</body>
</html>