emoji-search/index.html
Christian Lawson-Perfect 10927d4022 first commit
2025-02-09 20:31:25 +00:00

32 lines
No EOL
687 B
HTML

<!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>