-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 719 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./icons/planetas.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Star Wars Planets</title>
</head>
<body>
<div id="main-content">
<h1>🪐 Star Wars Planets</h1>
<div><input id="search-input" type="text" placeholder="Search for a planet">
<button onclick="fetchByName()" class="search-btn">Search</button></div>
<div id="list-items">
<ul id="list-planets">
</ul>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>