forked from BCSDLab-Edu/FrontEnd_2025-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.html
More file actions
25 lines (25 loc) · 901 Bytes
/
html.html
File metadata and controls
25 lines (25 loc) · 901 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>국가 정보 탐색</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<p class="title">국가 정보 탐색기</p>
<input type="text" id="input" placeholder="나라명 검색 (예: Korea)">
<div class="filter_btn">
<button class="region-btn" data-region="Africa">아프리카</button>
<button class="region-btn" data-region="Americas">아메리카</button>
<button class="region-btn" data-region="Asia">아시아</button>
<button class="region-btn" data-region="Europe">유럽</button>
<button class="region-btn" data-region="Oceania">오세아니아</button>
</div>
<div class="main">
<div id="result" class="country-list"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>