-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcountrySearch.html
More file actions
27 lines (27 loc) · 946 Bytes
/
countrySearch.html
File metadata and controls
27 lines (27 loc) · 946 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
25
26
27
<!DOCTYPE html>
<html lang="ko">
<head>
<title>country Explorer</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="countrySearch.css" />
</head>
<body>
<header id="header">
<h1>🌍 Country Explorer</h1>
<div class="search">
<input type="text" id="searchBox" placeholder="국가 이름을 입력하세요">
<select id="regionFilter">
<option value="">전체 대륙</option>
<option value="africa">Africa</option>
<option value="asia">Asia</option>
<option value="europe">Europe</option>
<option value="americas">Americas</option>
<option value="oceania">Oceania</option>
</select>
</div>
</header>
<main id="main"></main>
<script src="countrySearch.js"></script>
</body>
</html>