Showing
2 changed files
with
0 additions
and
63 deletions
views/Index.html
deleted
100644 → 0
1 | -<!doctype html> | ||
2 | -<html> | ||
3 | -<head> | ||
4 | - <title>BUS TT</title> | ||
5 | - <meta charset="utf-8"> | ||
6 | - <style type="text/css"> | ||
7 | - a { text-decoration:none } /* 하이퍼링크 밑줄 미적용 | ||
8 | - a { color:red; text-decoration:none} : 색깔 변화없음 | ||
9 | - */ | ||
10 | - </style> | ||
11 | -</head> | ||
12 | - | ||
13 | -<body> | ||
14 | - <h1><p style="text-align:center;">BTT</p></h1> | ||
15 | - <br> | ||
16 | - <link rel='stylesheet' type='text/css' href='/css/style.css' /> | ||
17 | - <h2 style="padding:0 0 0 20px;"> 사색의 광장 Bus Time Table 조회 서비스에 오신 것을 환영합니다.</h2> | ||
18 | - <p style="padding:0 0 0 20px;"> 이곳에는 사색의 광장에서 출발하는 모든 버스의 정보가 있습니다.</p> | ||
19 | - <br><br> | ||
20 | - <h2 style="padding:0 0 0 20px;"> 버스별 시간표 조회</h2> | ||
21 | - | ||
22 | - <div style="padding:0 0 0 20px;"><script> | ||
23 | - var date = new Date(); | ||
24 | - var yyyy = date.getFullYear(); | ||
25 | - var mm1 = date.getMonth() + 1; | ||
26 | - var dd = date.getDate(); | ||
27 | - var hh = date.getHours(); | ||
28 | - var mm2 = date.getMinutes(); | ||
29 | - | ||
30 | - document.write(yyyy+"년 "+mm1+"월 "+dd+"일 오늘 운행하는 버스들 "); | ||
31 | - document.write("( "+hh+"시 "+mm2+"분 기준 )"); | ||
32 | - </script> </div> | ||
33 | - <br> | ||
34 | - <ul> | ||
35 | - <li><a href="http://localhost:23023/timetable?busNum=9" style="font-size:2em;">9</a></li> | ||
36 | - <li><a href="http://localhost:23023/timetable?busNum=1112" style="font-size:2em;">1112</a></li> | ||
37 | - <li><a href="http://localhost:23023/timetable?busNum=5100" style="font-size:2em;">5100</a></li> | ||
38 | - <li><a href="http://localhost:23023/timetable?busNum=7000" style="font-size:2em;">7000</a></li> | ||
39 | - </ul> | ||
40 | - <br> | ||
41 | - <p> html파일임</p> | ||
42 | - | ||
43 | -</body> | ||
44 | -</html> |
views/timetable.html
deleted
100644 → 0
1 | -<!-- 이 문서는 base.js에 timetableHTML로 저장되어 있음. 따라서 이 문서는 직접적으로 사용하지 않음--> | ||
2 | - | ||
3 | -<!doctype html> | ||
4 | -<html> | ||
5 | -<head> | ||
6 | - <title>Time Table</title> | ||
7 | - <meta charset="utf-8"> | ||
8 | - <style type="text/css"> | ||
9 | - a { text-decoration:none } | ||
10 | - </style> | ||
11 | -</head> | ||
12 | - | ||
13 | -<body> | ||
14 | - <h1><a href="Index.html"><p style="text-align:center;">BTT</p></a></h1> | ||
15 | - <br> | ||
16 | - <h2>0000 BUS Time Table</h2> | ||
17 | - <p> 타임테이블 출력 ~~~~ </p> | ||
18 | -</body> | ||
19 | -</html> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment