-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (63 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
67 lines (63 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A very good site</title>
</head>
<body>
<h1>
This is my very first webpage
</h1>
<a href="pages/orders.html">Orders</a>
<p> Ez bizony egy bekezdés</p>
<p>Ez pedig egy kecske</p>
<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="about2.html">About</a>
</li>
</ul>
<table>
<caption>Opening time</caption>
<thead>
<tr>
<th>Day</th>
<th>Open</th>
<th>Close</th>
</tr>
</thead>
<tbody>
<tr>
<td>Monday-Friday</td>
<td>09:00</td>
<td rowspan="2">21:00</td>
</tr>
<tr>
<td>Saturday</td>
<td>09:00</td>
<td>24:00</td>
</tr>
<tr>
<td>Sunday</td>
<td>09:00</td>
<td>21:00</td>
</tr>
</tbody>
<tr>
<td>
<tfoot>©2019</tfoot>
</td>
</tr>
</table>
</body>
</html>
<p>It is a <em>very important</em><strong>information</strong> </p>