-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (93 loc) · 3.99 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Antic+Didone' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="bower_components/skeleton/stylesheets/base.css" />
<link rel="stylesheet" href="bower_components/skeleton/stylesheets/layout.css" />
<link rel="stylesheet" href="bower_components/skeleton/stylesheets/skeleton.css" />
<link rel="stylesheet" href="styles.css" />
<link href='https://fonts.googleapis.com/css?family=Changa+One:400,400italic' rel='stylesheet' type='text/css'>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="index.js"></script>
<title>Sojourn Lodging</title>
</head>
<body>
<div class="container">
<section class="hero">
<h1 class="hero-heading">Sojourn Lodging </h1>
<hr>
<div class="row">
<div class="six columns right">
<h3>Corporate Offices</h3>
<div class='location'>Virginia Beach, VA</div>
<div class='location'>Park City, UT</div>
</div>
<div class="six columns">
<h3>Contact Information</h3>
<div class='name'>Alec Harwin <div>757.406.8288</div>
</div>
<div class='name'>George Harwin <div>757.406.8282</div>
</div>
</div>
</div>
</sectiom>
<section id="hotels" class="properties cardtext">
<h1> Hotel Developments </h1>
<ul>
<li>Hilton Home 2 <span>Nashville, TN</span>
</li>
<li>Hilton Homewood Suites <span>Virginia Beach, VA</span>
</li>
<li>Fairfield Inn and Suites <span>Washington, DC</span>
</li>
<li>Sheraton Tarrytown <span>Westchester County, NY</span>
</li>
<li>Marriott Courtyard <span>Brookline, MA</span>
</li>
<li>SpringHill Suites by Marriott <span>Westchester County, NY</span>
</li>
<li>Hilton Homewood Suites <span>Arlington, MA</span>
</li>
<li>Fairfield Inn and Suites by Marriott <span>Streetsboro, OH</span>
</li>
<li>Town Place Suites <span>Streetsboro, OH</span>
</li>
<li>Marriott Courtyard <span>Sommersett, NJ</span>
</li>
<li>Hilton Home 2 <span>Sandy, UT</span>
</li>
<li>Comfort Inn and Suites <span>Warner Robins, GA</span>
</li>
<li>Comfort Inn and Suites <span>Pensacola, FL</span>
</li>
</ul>
</section>
<section id="apartments" class="properties cardtext">
<h1>Apartment Developements</h1>
<ul>
<li>801 Polaris <span>Columbus, OH</span>
</li>
<li>Central Ninth Lofts in Downtown Salt Lake City <span>Coming Soon</span>
</li>
</ul>
</section>
<section id="restaurants" class="properties cardtext">
<h1>Restaurant Developments</h1>
<ul>
<li>Cracker Barrel <span>Sterling, VA, Washington Dulles Airport</span>
</li>
</ul>
</section>
<section id="offices" class="properties cardtext">
<h1>Office Developments</h1>
<ul>
<li>Carothers Office Park <span>Nashville, TN</span></li>
<li>Polaris Offices <span>Columbus, Ohio</span></li>
<li>Cleveland Park Business Center <span>Virginia Beach, VA</span></li>
<li>Eden Way Business Park <span>Chesapeake, VA</span></li>
<li>Patriot Park Business Center at New Town <span>Williamsburg, VA</span></li>
</ul>
</section>
</div>
</body>
</html>