-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse.html
More file actions
71 lines (68 loc) · 1.92 KB
/
Copy pathcourse.html
File metadata and controls
71 lines (68 loc) · 1.92 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
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Course</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>
<a href="opening.html">OPENING</a>
<a href="contact.html">CONTACT</a>
COURSE
</div>
<h2>Ultimate Brunch Course</h2>
<table border="1">
<caption>Normal Table</caption>
<tr>
<th> </th>
<th> Tuesday </th>
<th> Wednesday </th>
</tr>
<tr>
<th> Morning </th>
<td> Baking bread: loaves, croissants and muffins. </td>
<td> Sweet treats: pancakes and waffles. </td>
</tr>
<tr>
<th> Afternoon </th>
<td> Eggs 4 ways: boiled, scrambled, poached, fried. </td>
<td> Fry pan specials: Fritters and hash browns. </td>
</tr>
</table>
<p></p>
<table border ="1">
<caption>Table with id attributes improves accessibility for visitors who use screen readers</caption>
<tr>
<th> </th>
<th id="Saturday"> Saturday </th>
<th id="Sunday"> Sunday </th>
</tr>
<tr>
<th id="Morning"> Morning </th>
<td headers="Saturday Morning" abbr="Bread">Baking bread: loaves,
croissants and muffins. </td>
<td headers="Sunday Morning" abbr="Eggs"> Eggs 4 ways: boiled,
scrambled, poached, fried </td>
</tr>
<tr>
<th id="Afternoon"> Afternoon </th>
<td headers="Saturday Afternoon" abbr="Sweet breakfasts">Sweet treats:
pancakes and waffles. </td>
<td headers="Sunday Afternoon" abbr="Fried foods"> Fry pan specials:
Fritters and hash browns. </td>
</tr>
</table>
</div>
</body>
</html>