emoji-search/index.html

32 lines
687 B
HTML
Raw Normal View History

2025-02-09 20:31:19 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Emoji search</title>
<script type="module" src="script.js"></script>
</head>
<body>
<header>
<h1>Emoji search</h1>
</header>
<main>
<form id="search-form">
<label for="query">Search:</label>
<input type="search" id="query" name="query">
</form>
<table id="results">
<thead>
<tr>
<th>Emoji</th>
<th colspan="2">Description</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</main>
</body>
</html>