-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 1.72 KB
/
index.html
File metadata and controls
37 lines (31 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description"
content="Discover and display random emojis with this interactive JavaScript Random Emoji application. Data is fetched using https://emoji-api.com/. Click to generate a new emoji each time!" />
<meta name="keywords"
content="random emoji, JavaScript emoji app, emoji generator, interactive emoji project" />
<meta property="og:title" content="Random Emoji Generator" />
<meta property="og:description"
content="Discover and display random emojis with this interactive JavaScript Random Emoji application. Data is fetched using https://emoji-api.com/. Click to generate a new emoji each time!" />
<meta property="og:image" content="https://coderespite.com/image/js-projects/random-emoji.png" />
<meta property="og:url" content="https://coderespite.com/projects/js-projects/random-emoji" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Random Emoji Generator" />
<meta name="twitter:description"
content="Discover and display random emojis with this interactive JavaScript Random Emoji application. Data is fetched using https://emoji-api.com/. Click to generate a new emoji each time!" />
<meta name="twitter:image" content="https://coderespite.com/image/js-projects/random-emoji.png" />
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Emoji Generator</title>
</head>
<body>
<div class="main">
<h2>Random Emoji</h2>
<h1 class="emoji" id="emoji-icon">😗</h1>
<h5 id="emoji-label">E1.0 kissing face</h5>
</div>
<script src="script.js"></script>
</body>
</html>