-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopening.html
More file actions
63 lines (61 loc) · 1.59 KB
/
Copy pathopening.html
File metadata and controls
63 lines (61 loc) · 1.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="iso-8859-1"?>
<!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" lang="en">
<head>
<title>Opening hours</title>
<link rel="stylesheet" type="text/css" href="css/interface.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div id="page">
<!-- "../index.html" -->
<a href="index.html" title="Click here to return to the home page">
<img class="main_image" src="images/logo.gif" alt="Example cafe" width="194" height="80" />
</a>
<div id="navigation">
<a href="index.html">HOME</a>
<a href="menu.html">MENU</a>
<a href="recipes.html">RECIPES</a>
OPENING
<a href="contact.html">CONTACT</a>
<a href="course.html">COURSE</a>
</div>
<h2>Opening hours & Serving times</h2>
<p>We are open from 7.00am - 3.30pm Monday to Friday and 8.00am to 4.00pm Saturday and Sunday</p>
<table border = "1">
<caption> Opening hours for the Example Cafe </caption>
<tr>
<th> </th>
<th> Monday </th>
<th> Tuesday </th>
<th> Wednesday </th>
<th> Thursday </th>
<th> Friday </th>
<th> Saturday </th>
<th> Sunday </th>
</tr>
<tr>
<th> Breakfast </th>
<td>7:00am - 10:00am</td>
<td>7:00am - 10:00am</td>
<td>7:00am - 10:00am</td>
<td>7:00am - 10:00am</td>
<td>7:00am - 11:00am</td>
<td>8:00am - 11:30pm</td>
<td>8:00am - 11:30pm</td>
</tr>
<tr>
<th> Lunch </th>
<td>11:30am - 2:30pm</td>
<td>11:30am - 2:30pm</td>
<td>11:30am - 2:30pm</td>
<td>11:30am - 2:30pm</td>
<td>11:30am - 2:30pm</td>
<td>11:30am - 3:30pm</td>
<td>11:30am - 3:30pm</td>
</tr>
</table>
</div>
</body>
</html>