forked from Sumedha2/E-Ramu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (64 loc) · 2.14 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>E-Ramu: Your Restaurant Manager</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="photos/logo.jpg" alt="E-Ramu.com">
</div>
<ul>
<li class="item"><a href="index.html">Home</a></li>
<li class="item"><a href="services.html">Services</a></li>
<li class="item"><a href="Login.html">Log In</a></li>
<li class="item"><a href="Sign_up.html">Sign Up</a></li>
<li class="item"><a class="mail-link"
href="mailto:[email protected]">Contact Us</a></li>
</ul>
</nav>
<section id="home">
<h1 class="h-primary">Welcome to E-Ramu</h1>
<p>Are you a restaurant owner/manager? </p>
<p>
Know someone who is?
</p>
<p>
Or do you know a restaurant in dire need of proper management?
</p>
</section>
<hr>
<section id="services-container">
<div id="services">
<div class="box">
<h2 class="h-secondary center">Congratulations Ji!</h2>
<br>
<p class="center">You have come to just the right place👇</p>
<p class="center">E-Ramu: The restaurant manager is here to help you!</p>
</div>
<div class="box">
<h2 class="h-secondary center"> We Will</h2>
<p class="center">
<ul>
<li>Keep a fool-proof record of your transactions</li>
<li>Manage your staff details <br>(This Ramu will not let your staff
gaslight you on salary payments and dues xD)</li>
<li>Generate customer bills</li>
<li>Provide a review portal</li>
<li>Estimate customer waiting times</li>
<li>Calculate your periodic profit/loss</li>
<li>Organise reservations</li>
</ul>
</p>
</div>
</div>
</section>
<footer>
<h3 class="center">If you have any complaints, queries or compliments, mail us <a class="mail-link"
href="mailto:[email protected]">here</a></h3>
<small class="center"> © E-Ramu: Restaurant Manager 2021</small>
</footer>
</body>
</html>