Added 2lcc
This commit is contained in:
parent
7073a2d3f2
commit
da72304428
11 changed files with 256 additions and 2 deletions
38
site/2lcc/index.html
Normal file
38
site/2lcc/index.html
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Clocks - Tools</title>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
||||
>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body class="container">
|
||||
<header>
|
||||
<hgroup>
|
||||
<h1>Two-letter Country Codes</h1>
|
||||
<p>Browser for ISO 3166-1</p>
|
||||
</hgroup>
|
||||
</header>
|
||||
|
||||
<div class="filter">
|
||||
<input placeholder="Filter" id="filter">
|
||||
</div>
|
||||
|
||||
<table id="country-list">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="code-column">Code</th>
|
||||
<th>Country</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<script src="main.js" type="module"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue