17 lines
479 B
HTML
17 lines
479 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>TreeHug - Search</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="./style.css" />
|
|
<link rel="icon" type="image/x-icon" href="treehug.png">
|
|
</head>
|
|
<body>
|
|
<input type="text" placeholder="Search..." id="search_bar" class="search_bar" onkeyup="eliminate_results()">
|
|
<ul id="search_list"></ul>
|
|
<script src="fetch_places.js"></script>
|
|
</body>
|
|
</html>
|