vanten-s.com/src/treehug/index.html

17 lines
479 B
HTML
Raw Normal View History

2023-11-27 08:40:29 +01:00
<!DOCTYPE html>
<html>
<head>
2023-12-02 10:15:08 +01:00
<title>TreeHug - Search</title>
2023-11-27 08:40:29 +01:00
2023-12-02 10:15:08 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style.css" />
2023-11-29 11:24:10 +01:00
<link rel="icon" type="image/x-icon" href="treehug.png">
2023-11-27 08:40:29 +01:00
</head>
<body>
2023-12-02 10:15:08 +01:00
<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>
2023-11-27 08:40:29 +01:00
</body>
</html>