-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
44 lines (42 loc) · 1.07 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>最安経路検索</title>
<meta name="description" content="最も遅れ、最も安い">
<script src="./main.js" defer></script>
</head>
<body>
<header>
<h1>最安経路検索</h1>
</header>
<main>
<div>
<button type="button" onclick="addRelayPoint()">中間地点追加</button>
</div>
<form name="locationData">
<div>
<label>
出発地点: <input>
</label>
</div>
<div id="relayPoints"></div>
<div>
<label>
到着地点: <input>
</label>
</div>
</form>
<div>
<button type="button" onclick="searchTransfer()">検索</button>
</div>
<output></output>
</main>
<footer>
<p>
<small>©2021 淵野アタリ</small>
</p>
</footer>
</body>
</html>