-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emoji Searcher</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="container">
<a href="#home" class="nav-link">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
</nav>
<div id="home" class="container">
<input type="text" id="search" placeholder="Search for emojis...">
<div id="emoji-container"></div>
<div id="pagination" class="pagination"></div>
</div>
<div id="about" class="container">
<h2>About</h2>
<p>This is an emoji searcher application where you can find and copy emojis.</p>
</div>
<div id="contact" class="container">
<h2>Contact</h2>
<p>For any inquiries, please contact us at <a href="mailto:info@example.com">info@example.com</a>.</p>
</div>
<script src="script.js"></script>
</body>
</html>