-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
170 lines (149 loc) · 3.44 KB
/
contact.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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<html>
<head>
<title>Contact</title>
<style>
body{
background-color:teal;
}
body.home li.home a,
body.about li.about a,
body.rooms li.rooms a,
body.food li.food a,
body.contact li.contact a {
background-color: grey;
}
.logo{
margin-left:160px;
}
.logo img{
width:150px;
height:150px;
}
.menu{
width:75%;
margin:0 auto;
}
.menu ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 70.2px;
text-decoration: none;
}
li a:hover {
background-color: #00CED1;
}
.main{
width:75%;
margin:0 auto;
background-color: white;
min-height:1200px;
clear:both;
}
.mainimg img{
width:99.5%;
height:500px;
border-style:solid;
border-color:white;
}
h2{
color:teal;
}
h3.intro{
color:#BDB76B;
}
.maintext{
color:#E9967A;
}
.mainpart1{
margin-left:30px;
margin-top:20px;
float:left;
width:530px;
min-height:300px;
}
.mainpart1img img{
height:300px;
width:500px;
border-style:solid;
border-color:teal;
}
.mainpart2{
padding-top:110px;
padding-right:10px;
}
.footer{
width:75%;
margin:0 auto;
}
</style>
</head>
<body class="contact">
<div class="wrapper">
<div class="header">
<div class="logo">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTtDl_M5QD3L1Hy_Ypaoa3ZDSzRNr_tk6mHsR2rtJjCzZjHOqhD4Q"/>
</div>
<br>
<div class="menu">
<ul>
<li class="home"><a href="home.html">Home</a></li>
<li class="about"><a href="about.html">About</a></li>
<li class="rooms"><a href="rooms.html">Rooms</a></li>
<li class="food"><a href="food.html">Food</a></li>
<li class="contact"><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<br>
<div class="main">
<div class="mainpart1">
<h2>
CONTACT
</h2><br><br>
<div class="mainpart1img">
<img src="http://www.aldenbeachresort.com/d/aldenbeachresortresponsive/media/Exterior/__thumbs_377_209_crop/20140303-154.jpg?1428581935"/>
</div><br><br>
<div class="mainpart1img">
<img src="https://s-ec.bstatic.com/images/hotel/max1024x768/413/41373349.jpg"/>
</div><br><br>
</div>
<div class="mainpart2">
<h3 class="intro">ALDEN SUITES LOCATION</h3>
<p class="maintext">
Alden Suites-A Beachfront Resort is one of the most family-friendly and affordable hotels in St. Pete Beach, Florida.<br><br>
To make a reservation, general inquiry, or receive more information about booking an event, please do not hesitate to contact us.<br><br>
Our Gulf-front property is conveniently located 25 minutes from St. Pete-Clearwater International Airport and 30 minutes from Tampa International Airport.<br><br>
</p>
<h3 class="intro">ALDEN SUITES CONTACT INFO</h3>
<p class="maintext">
Alden Suites-A Beachfront Resort
To reserve a room or learn more about our Gulf-front resort in St. Pete Beach, please contact the Alden Suites today.
<br><br>
Address : 5900 Gulf Blvd., St Pete Beach, FL 33706
<br><br>
Mail us: [email protected]
<br><br>
Call us : 727.360.7081 | Toll-Free: 800.237.2530
</p>
</div>
</div>
<br><br><br><br><br>
<div class="footer">
<div class="row">
<center><p><b>Copyright © 2018 Alden Suites - A BeachFront Resort. All Rights Reserved</b></p></center>
</div>
</div>
</div>
</body>
</html>