-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
72 lines (61 loc) · 2.58 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
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nmoji</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/darkmode.css">
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
</head>
<body>
<header class="header">
<h1>Nmoji</h1>
<div class="header">
<h1>Nmoji</h1>
<button id="theme-toggle">
<span id="theme-icon">🌞</span>
</button>
</div>
</header>
<div class="container">
<main>
<div class="Nmoji-body">
<div class="Nmoji-filter-container">
<div class="search-bar">
<input type="text" id="filterInput" class="filter-input" placeholder="Filter emojis by name...">
<span class="search-icon">🔍</span>
</div>
<div class="filter-bar">
<select id="categoryFilter" class="filter-select">
<option value="">Categories</option>
<!-- Add more categories as needed -->
</select>
<select id="tagFilter" class="filter-select">
<option value="">Tags</option>
<!-- Populate with tags dynamically -->
</select>
<select id="aliasFilter" class="filter-select">
<option value="">Filter by alias</option>
</select>
</div>
</div>
<div id="emojiContainer" class="emoji-container">
<!-- Emoji elements will be inserted here by JavaScript -->
</div>
<div class="emoji-description">
<h2>Emote Description</h2>
<p id="emojiDescription">Select an emoji to see its description here.</p>
</div>
</div>
</main>
</div>
<footer class="footer">
<p>© 2024 Open-Source Project - <a class="link" href="https://www.github.com/narainkarthikv/Nmoji"
target="_blank">GitHub Repository</a></p>
<p>Developed by <a class="link" href="https://www.github.com/narainkarthikv" target="_blank">Wisdom Fox
Community</a></p>
</footer>
<script src="./js/script.js"></script>
</body>
</html>