-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainMenu.txt
146 lines (111 loc) · 3.51 KB
/
mainMenu.txt
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<html>
<head>
<style>
h1, h2, h3{
font-family: Arial, Helvetica, sans-serif;
}
p{
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size: 17px;
font-weight: bold;
}
#loginbox{
padding: 15px;
}
#categories{
background-color:white;
}
body{
background-image: url('inn.jpg');
background-attachment: fixed;
}
#container{
box-shadow: 12px 12px 12px black;
border: solid black 1px;
width: 800px;
background-color: #9cc4db;
border-radius: 25px;
padding: 25px;
margin-top:25px;
}
#description{
margin-left: 40px;
margin-right: 40px;
}
#description img{
margin: 10px;
}
#crackers{
float: left;
border: solid black 3px;
}
#breakfast{
float: right;
border: solid black 3px;
}
#cr{
margin-top: 20px;
border: solid black 5px;
}
ul {
list-style-type: none;
margin: 10px;
padding: 0;
}
li {
display: inline;
padding-right: 15px;
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 20px;
}
#video{
border: solid black 3px;
}
#minilogo{
margin: -15px;
}
#snowy{
border: solid black 3px;
width: 600px;
}
</style>
</head>
<body>
<center>
<div id="container">
<?php
session_start();
echo "<a href='logout.php'>Click here to log out</a>";
//displays Main Menu and brief description page
echo "<h1>Main Menu</h1>";
echo "<hr>";
echo "<ul>";
//Three services options
echo "<li><a href='gift_Certificates.php'>Gift Certificate Manager</a></li>";
echo "<li><a href='calendar.php'>Availability Calendar</a></li>";
echo "<li><a href='reservations.php'>Make a Reservation</a></li>";
echo "</ul>";
//All this below is more of visual information about the inn, not very functional
echo "<img src='activities.png' align='center' />";
echo " <br/>";
echo "
<div id='description'>
<p>
<img id = 'breakfast' src='breakfast.jpg' />The Carmel Cove Inn is a ten-room bed & breakfast located in Deep Creek Lake, MD. Nestled in the mountains, it is the perfect place to escape the city for a weekend and relax.
The lake offers numerous activities such as swimming, hiking, biking, canoeing, kayaking, skiing, snowboarding, tubing, horseback riding, fishing, high-ropes, ziplines, disc golf, and more!
It is a great place to spend a birthday, honeymoon, anniversary, or holiday. Each morning a complimentary gourmet breakfast is served to you in our beautiful breakfast room.
<img id = 'crackers' src='crackers.jpg' />Coffee, tea, hot chocolate, beer, and wine are all available 24/7. At night we light a bonfire at our fire circle and have smore's available to reconnect with your inner boy or girl scout.
If you have a terrace room, breakfast can be brought to your room so you can eat while gazing into the bustling forest. Please let us make your next visit to the lake as special as it should be.
</p>
<img id = 'cr' src='cr.jpg' />
<img id = 'cr' src='snacks.jpg' align='center' />
</div>
<iframe id='video' width='420' height='315' src='//www.youtube.com/embed/sgeEjoaOsco' allowfullscreen></iframe>
<br/><br/>
<img id = 'snowy' src='snowy.jpeg' align='center' />
";
?>
</div>
</center>
</body>
</html>