-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchap-2-challenge.html
73 lines (66 loc) · 2.86 KB
/
chap-2-challenge.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foundation | Welcome</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<div class="row">
<div class="small-6 medium-3 columns">
<img src="img/logo.png" alt="The Landon Hotel.">
<h3>Facilities</h3>
<ul>
<li>40 Modern Rooms</li>
<li>4 Executive Suites</li>
<li>24-Hour Dining Room</li>
<li>Business Center</li>
<li>Fitness Center</li>
<li>Massage Center</li>
</ul>
<h3>Amenities</h3>
<ul>
<li>Free Wireless Internet</li>
<li>Pets Allowed</li>
<li>Luxurious Bedding</li>
<li>Daily Maid Service</li>
<li>Laundry & Dry Cleaning Service</li>
<li>Concierge Service</li>
<li>Express Checkout</li>
<li>24-Hour Security</li>
</ul>
<h3>Local Sights</h3>
<ul>
<li>Bernal Hill Park</li>
<li>San Francisco Public Library</li>
<li>Alemany Farmers’ Market</li>
<li>Portrero Hill</li>
<li>Mission District</li>
<li>Unique Bookstores </li>
<li>Bakeries & Coffee Houses</li>
</ul>
</div>
<div class="small-6 medium-9 columns">
<h2>You'll feel at home in our neighborhood</h2>
<p>Founded in 1952 by Arthur Landon, an English businessman who travelled the world in search of the perfect balance of comfort, personality, and convenience.</p>
<h2>Be part of the community</h2>
<p><img src="img/sfroom.jpg" class="right">Nestled between a yoga studio and a bakery, on a quaint street in this community-centered neighborhood, is the 40-room, modern-themed, Landon Hotel, with a state of the art massage studio.</p>
<p>The Landon Massage Center is an internationally renowned center for massage therapy and holistic healing. Guests of the Bernal Heights Landon are entitled to a free massage during their stay.</p>
<p>The Bernal Heights Landon also functions as a gathering place for many of the community’s activities and calls to activism. It seems that no one can leave the hotel untouched by the sense of community, peace, and well-being.</p>
<ul class="small-block-grid-2 large-block-grid-4">
<li><img src="img/sfmarket.jpg" alt="Farmer's market. "></li>
<li><img src="img/sfrocks.jpg" alt="Hot rock massage. "></li>
<li><img src="img/sfbike.jpg" alt="Biking in San Francisco. "></li>
<li><img src="img/sfcafe.jpg" alt="Coffee at a cafe. "></li>
</ul>
</div>
</div><!-- end row -->
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>