-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (78 loc) · 2.19 KB
/
Copy pathindex.html
File metadata and controls
88 lines (78 loc) · 2.19 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title>Eat Healthy Live Healthy</title>
<style>
/* Make the page fill the screen */
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
/* Container fills full screen */
.container {
border: 2px solid black;
padding: 20px;
width: 100%;
height: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center; /* vertical centering */
align-items: center; /* horizontal centering */
}
h1 {
color: maroon;
text-align: center;
}
a:link { color: green; }
a:active { color: blue; }
a:visited { color: red; }
table {
border: 2px solid blue;
border-collapse: collapse;
margin-top: 20px;
}
table th, table td {
border: 2px solid blue;
padding: 5px;
}
caption {
color: blue;
font-weight: bold;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin: 5px 0;
}
img {
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>KHAO PIYO RESTAURANT</h1>
<p><b>Collect formation for</b></p>
<ul>
<li><a href="one.html">Menus</a></li>
<li><a href="two.html">Reservation</a></li>
<li><a href="three.html">Catering</a></li>
<li><a href="four.html">Tours</a></li>
</ul>
<table>
<caption>Menus Available are</caption>
<tr><td>1</td><td>INDIAN</td></tr>
<tr><td>2</td><td>ITALIAN</td></tr>
<tr><td>3</td><td>CONTINENTAL</td></tr>
<tr><td>4</td><td>TILAI</td></tr>
</table>
<img src="Restaurant.jpg" alt="Restaurant Image" width="150">
<p>For further enquiries and reservations <a href="mailto:abc@xyz.com">Contact Us.</a></p>
</div>
</body>
</html>