-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCar.html
47 lines (47 loc) · 1.08 KB
/
Car.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
45
46
47
<!DOCTYPE HTML>
<html>
<head>
<title>pub/sub</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="js/pub-sub.js"></script>
<script src="js/spin.js"></script>
<script src="js/car.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div id="header">
<input id="btnRefresh" type="button" value="Refresh"/>
<input id="btnAutoRefresh" type="button" value="Auto refresh"/>
<input id="btnClear" type="button" value="Clear"/>
</div>
<div id="content">
<div class="lcol">
<div id="box1" class="box">
<p class="title">
</p>
<ul></ul>
</div>
<div id="box2" class="box">
<p class="title">
</p>
<ul></ul>
</div>
</div>
<div class="rcol">
<div id="box3" class="box">
<p class="title">
</p>
<ul></ul>
</div>
<div id="box4" class="box">
<p class="title">
</p>
<ul></ul>
</div>
</div>
</div>
<div id="footer"><input id="btnSend" type="button" value="Another channel"/>
<span> pub/sub concept </span>
</div>
</body>
</html>