-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
55 lines (55 loc) · 1.27 KB
/
about.html
File metadata and controls
55 lines (55 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<ul>
<li>
<a href="/">Home</a>
</Li>
<li>
<a href="/pages/products.html">Products</a>
</Li>
<li>
<a href="/pages/orders.html">Orders</a>
</Li>
<li>
<a href="/about.html">About</a>
</Li>
</ul>
<h1>About</h1>
<table>
<caption>Opening hours</caption>
<thead>
<tr>
<th>Day</th>
<th>Opening</th>
<th>Closing</th>
</tr>
</thead>
<tbody>
<tr>
<td>Monday </td>
<td>9:00</td>
<td rowspan="2">21:00</td>
</tr>
<tr>
<td>Saturday </td>
<td>9:00</td>
</tr>
<tr>
<td>Sunday </td>
<td colspan="2">closed</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>©, 2022</td></tr>
</tfoot>
</table>
</body>
</html>