-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.html
More file actions
63 lines (59 loc) · 1.3 KB
/
About.html
File metadata and controls
63 lines (59 loc) · 1.3 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
<!DOCTYPE html>
<html>
<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>Food web-app</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
section {
padding: 50px;
text-align: center;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1> Welcome to My Food-Web App</h1>
</header>
<section>
<h2>About</h2>
<p>This is a food web-app. You can modify and add content as per your needs.</p>
</section>
<section>
<h2>Services</h2>
<p>Here are the Foods we offer:</p>
<p>Biryani</p>
<p>Cake</p>
<p>Pizza</p>
<p>Choupsey</p>
<p>Wings</p>
</section>
<section>
<h2>Contact</h2>
<p>You can reach us at:</p>
<p>Email: kellatirupathirao049@gmail.com</p>
<p>Phone: 6303639014</p>
</section>
<footer>
<p>© 2023 Your Company. All rights reserved.</p>
</footer>
</body>
</html>