-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.html
79 lines (75 loc) · 1.75 KB
/
email.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
<html>
<head>
<style>
.center {
margin: auto;
width: 50%;
border: 5px solid #73AD21;
padding: 60px;
}
.nav-flex-row {
display: flex;
flex-direction: row;
justify-content: center;
left: 0;
width: 100%;
padding: 0;
}
.nav-flex-row li {
text-decoration: none;
list-style-type: none;
padding: 20px 15px;
}
.nav-flex-row li a {
font-family: 'Big Shoulders Text', cursive;
color: #000;
font-size: 1.5em;
text-transform: uppercase;
font-weight: 300;
}
.nav-flex-row li a:hover{
background: yellow;
}
</style>
</head>
<body>
<nav>
<ul class="nav-flex-row">
<li class="nav-item">
<a href="about.html">About</a>
</li>
<li class="nav-item">
<a href="main.html">Home</a>
</li>
<li class="nav-item">
<a href="reservation.html">Reservation</a>
</li>
<li class="nav-item">
<a href="Menu.html">Menu</a>
</li>
<li class="nav-item">
<a href="shop.html">Shop</a>
</li>
</ul>
</nav>
<div class="center">
<p>Our mail is <a href="#home">someone@example.com</a></p>
<pre> Our mail is mali@gmail.com,
click hear and mail us
<nav>
<ul class="nav-flex-row">
<li class="nav-item">
<a href="mailto:someone@example.com">Send email</a>
</li>
</ul>
</nav>
</pre>
</div>
<pre>
note: -
It should have proper date of check-in,name,how many people;
You will get a conformation email after 30 min.
--------------------------------------------------------------------------------------------< Thank you >-------------------------------------------------------------------------------------------------
</pre>
</body>
</html>