Index.html
1.65 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
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html>
<head>
<title>BUS TT</title>
<meta charset="utf-8">
<style type="text/css">
a { text-decoration:none } /* 하이퍼링크 밑줄 미적용
a { color:red; text-decoration:none} : 색깔 변화없음
*/
</style>
</head>
<body>
<h1><p style="text-align:center;">BTT</p></h1>
<br>
<link rel='stylesheet' type='text/css' href='/css/style.css' />
<h2 style="padding:0 0 0 20px;"> 사색의 광장 Bus Time Table 조회 서비스에 오신 것을 환영합니다.</h2>
<p style="padding:0 0 0 20px;"> 이곳에는 사색의 광장에서 출발하는 모든 버스의 정보가 있습니다.</p>
<br><br>
<h2 style="padding:0 0 0 20px;"> 버스별 시간표 조회</h2>
<div style="padding:0 0 0 20px;"><script>
var date = new Date();
var yyyy = date.getFullYear();
var mm1 = date.getMonth() + 1;
var dd = date.getDate();
var hh = date.getHours();
var mm2 = date.getMinutes();
document.write(yyyy+"년 "+mm1+"월 "+dd+"일 오늘 운행하는 버스들 ");
document.write("( "+hh+"시 "+mm2+"분 기준 )");
</script> </div>
<br>
<ul>
<li><a href="http://localhost:23023/timetable?busNum=9" style="font-size:2em;">9</a></li>
<li><a href="http://localhost:23023/timetable?busNum=1112" style="font-size:2em;">1112</a></li>
<li><a href="http://localhost:23023/timetable?busNum=5100" style="font-size:2em;">5100</a></li>
<li><a href="http://localhost:23023/timetable?busNum=7000" style="font-size:2em;">7000</a></li>
</ul>
<br>
<p> html파일임</p>
</body>
</html>