32 lines
No EOL
687 B
HTML
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> |