-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.09 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.09 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
<html lang='en'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<style>
html,
body {
font-size: 1.25rem;
font-family: 'Roboto', sans-serif;
text-align: center;
}
.popOut {
float: left;
width: 250px;
margin-top: 5px;
padding: 5px;
background-color: #F9F9F9;
border: 1px solid #DDD;
display: block;
position: absolute;
}
</style>
</head>
<body>
<h2>emoji picker 😄</h2>
<p>Use classes "emoji-picker" and "emoji-shortcode" for seperate functions added to textarea of input field, or
"emoji" for both.<br>Shortcode is used for adding emojis using two ":" with the description in the middle.
Do ":smile:" to get
started.</p>
<textarea class="emoji-picker" cols="50" rows="10"></textarea>
<script src='emoji-picker.js'></script>
</body>
</html>