38 lines
		
	
	
		
			796 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			796 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!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> |