-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi2.html
More file actions
33 lines (31 loc) · 1.05 KB
/
api2.html
File metadata and controls
33 lines (31 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>국가 정보 탐색</title>
<link rel="stylesheet" href="api2.css">
</head>
<body>
<header>
<h1>국가 정보 검색</h1>
<div>
<input type="text" id="search-input" placeholder="국가 이름을 입력하세요">
<select id="region-select">
<option value="">전체 대륙</option>
<option value="Africa">Africa</option>
<option value="Europe">Europe</option>
<option value="Asia">Asia</option>
<option value="Oceania">Oceania</option>
<option value="Americas">Americas</option>
<option value="Polar">Polar</option>
</select>
</div>
</header>
<main>
<div id="country-list" class="country-list"></div>
<div id="country-detail" class="country-detail"></div>
</main>
<script src="api2.js"></script>
</body>
</html>