-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (54 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="stylesheet" href="./style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>emojipasta</title>
</head>
<body>
<header>
<div class="logo">
<img src="favicon.svg">
<hgroup>
<h1>emojipasta</h1>
<h2>
emoji text generator for slack
created by:
<a href="https://github.com/aspirar" target="_blank">Lakshya</a>
&
<a href="https://github.com/ajeet97" target="_blank">Ajeet</a>
</h2>
</hgroup>
</div>
<div class="lights" id="lights">lights off</div>
</header>
<main>
<div class="result">
<div id="result"></div>
<div class="copied">Copied!</div>
</div>
</main>
<section class="input">
<label class="fg-input">
<div class="emoji-picker" id="fg-picker"></div>
<div class="input-preview" id="fg-input-preview">🥘</div>
<input type="text" value=":shallow_pan_of_food:" id="fg">
<div>fg</div>
</label>
<img src="./assets/swap.png" class="swap-icon" id="swap">
<label class="bg-input">
<div class="emoji-picker" id="bg-picker"></div>
<div class="input-preview" id="bg-input-preview">🥒</div>
<input type="text" value=":cucumber:" id="bg">
<div>bg</div>
</label>
<label class="text-input">
<textarea rows="1" id="text">pasta</textarea>
<div>text</div>
</label>
</section>
<script type="module" src="./js/main.js"></script>
</body>
</html>