-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 1.04 KB
/
index.html
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
<!DOCTYPE html>
<html>
<body>
<h1>日本東京都旅遊景點</h1>
<div class="form-container">
<select id="dropdown">
<optgroup label="上野">
<option value="6 Chome-11-5 Ueno, Taito City, Tokyo 110-0005日本">OS Drug 上野店藥妝店</option>
<option value="日本〒110-0005 Tokyo, Taito City, Ueno, 6 Chome−6−6 小湊ビル 1~2F">一頭牛燒肉 房家</option>
</optgroup>
<optgroup label="淺草">
<option value="淺草寺">淺草寺</option>
<option value="雷門">雷門</option>
</optgroup>
<optgroup label="新宿">
<option value="新宿御苑">新宿御苑</option>
<option value="新宿歌舞伎町">新宿歌舞伎町</option>
</optgroup>
</select>
<button onclick="displayDestination()">確認</button>
</div>
<h2 id="result"> </h2>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</body>
</html>