forked from webgenie/javascriptbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
48 lines (41 loc) · 1.34 KB
/
Copy pathexample.html
File metadata and controls
48 lines (41 loc) · 1.34 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
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>JavaScript & jQuery - 제8장 Ajax와 JSON - 최종 예제</title>
<link rel="stylesheet" href="css/c08.css" />
<meta charset="utf-8">
</head>
<body>
<header>
<h1>THE MAKER BUS</h1>
<nav>
<a href="jq-load.html">HOME</a>
<a href="jq-load2.html">ROUTE</a>
<a href="jq-load3.html">TOYS</a>
<a href="example.html" class="current">TIMETABLE</a>
</nav>
</header>
<section id="content">
<div id="container">
<h2>행사 안내</h2>
<div class="third">
<div id="event">
<a id="ca" href="ca.html"><img src="img/map-ca.png" alt="San Francisco" />샌프란시스코, CA</a>
<a id="tx" href="tx.html"><img src="img/map-tx.png" alt="Austin, TX" />오스틴, TX</a>
<a id="ny" href="ny.html"><img src="img/map-ny.png" alt="New York, NY" />뉴욕, NY</a>
</div>
</div>
<div class="third">
<div id="sessions">
<p>왼쪽에서 행사 위치를 선택하세요</p>
</div>
</div>
<div class="third">
<div id="details"></div>
</div>
</div><!-- #container -->
</section><!-- #content -->
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/example.js"></script>
</body>
</html>