-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp1.html
More file actions
33 lines (33 loc) · 1015 Bytes
/
p1.html
File metadata and controls
33 lines (33 loc) · 1015 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<link rel="stylesheet" type="text/css" href="p1.css" />
<script src="p1.js"></script>
</head>
<body>
<div id="datepicker">
<div id="header">
<div id="pre_button"><<</div>
<div id="title"></div>
<div id="next_button">>></div>
</div>
<table>
<thead>
<tr>
<th><abbr title="Sunday">Sun</abbr></th>
<th><abbr title="Monday">Mon</abbr></th>
<th><abbr title="Tuesday">Tue</abbr></th>
<th><abbr title="Wednesday">Wed</abbr></th>
<th><abbr title="Thursday">Thu</abbr></th>
<th><abbr title="Friday">Fri</abbr></th>
<th><abbr title="Saturday">Sat</abbr></th>
</tr>
</thead>
<tbody id="body">
</tbody>
</table>
</div>
</body>
</html>