Skip to content

Instantly share code, notes, and snippets.

@ChaiyachetU
Created March 26, 2022 06:40
Show Gist options
  • Save ChaiyachetU/c0700aac3fb2f36f158b771af5f46430 to your computer and use it in GitHub Desktop.
Save ChaiyachetU/c0700aac3fb2f36f158b771af5f46430 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Thailand Address Search</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
</head>
<body>
<div class="container">
<h2 class="title">Thailand Address Search</h2>
<div class="search-container">
<div class="search-box">
<i class="fa fa-search search-icon"></i>
<input id="search" type="text" placeholder="Search..." />
</div>
<div id="results" class="results">
<!-- Address list -->
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment