-
Notifications
You must be signed in to change notification settings - Fork 0
/
CarRental.html
146 lines (89 loc) · 3.02 KB
/
CarRental.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
<!-----------------
Main Profile Page
------------------>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GoTravel</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel = "stylesheet" href = "css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond" rel="stylesheet">
<link rel = "stylesheet" href = "js/animsition/animsition.min.css">
<link rel = "stylesheet" href = "css/styles.css">
</head>
<body>
<header class = "main-header">
<div id = "main-header">
<h3 class = "name"><a href = "index.html">GoTravel</a></h3>
</div>
<nav>
<ul class = "main-nav">
<li><a href = "index.html"> Home</a></li>
<li><a href = "TravelArrangements.html">Travel Arrangements</a></li>
<li><a href = "hotel.html">Hotel</a></li>
<li><a href = "CarRental.html">Car Rentals</a></li>
</ul>
</nav>
</header>
<!--Added clearfix -->
<div class = "clearfix">
<div id = "portfolio">
<div class = 'portfolio'>
<h3 class = "portfolio-title">Car Rentals</h3>
<ul class = "projects">
<li>
<img src = "images/Avis Car Rental.jpg" alt = "Avis Car Rental">
<h2>Avis Car Rental</h2>
<p>
We will ensure a stress-free car rental experience by providing
superior services that cater to our customers' individual needs...always
conveying the 'We Try Harder®' spirit with knowledge, caring and a passion
for excellence.
</p>
</li>
<li>
<img src = "images/Hertz Car Rental.jpg" alt = "Hertz Car Rental" >
<h2>Hertz Car Rental</h2>
<p>
The Hertz Corporation is one of the largest worldwide rental companies, and
the Hertz brand is one of the most recognized in the world. Product and service
initiatives such as Hertz Gold Plus Rewards, Ultimate Choice, Carfirmations, Mobile
Wi-Fi and unique vehicles offered through the Adrenaline, Dream, Green and Prestige Collections
set Hertz apart from the competition.
</p>
</li>
<li>
<img src = "images/EnterpriseRentACar.jpg" alt = "Enterprise Rent-A-Car" >
<h2>Enterprise Rent-A-Car</h2>
<p>
Taking care of our customers, our communities, our employees and our environment.
</p>
</li>
</ul>
<footer id = "footer">
<div class = "border-line">
</div>
<!-- <h3 class="studentname-footer"><a>Student Name</a>
</h3> -->
<ul>
<li class="back-to-top">
<a href="#main-header" title="back-to-top">BACK TO TOP</a>
</li>
<li id = "foot-li">
<ul class="footer-nav">
<li>
<a href="about.html">ABOUT GoTravel</a>
</li>
<li>
<a href="reward.html">MY REWARDS</a>
</li>
<li>
<a href="contact.html">CONTACT</a>
</li>
</ul>
</li>
</ul>
<p id = "copyrights" >© 2018 GoTravel, LLC, All rights reserved.</p>
</footer>
</html>