first commit
This commit is contained in:
commit
10927d4022
7 changed files with 47157 additions and 0 deletions
32
index.html
Normal file
32
index.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue