-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (97 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Car Sharing Supreme</title>
<link rel="stylesheet" href="./css/index.css" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<a class="navbar-brand" href="./">CSS</a>
<a class="active" href="./">Home</a>
<a href="./share-and-search.html">Share and Search</a>
<a href="./sign-in.html">Sign In</a>
<a href="./terms-and-conditions.html">Terms and Conditions</a>
</nav>
<!-- Navbar -->
<!-- Header -->
<header>
<h1 class="slogan">
"Ride supreme with Car Sharing Supreme - your ride, your choice anytime,
anywhere!"
</h1>
<p>
Welcome to Car Sharing Supreme, a revolutionary platform that allows
users around the world to share car journeys and save money and
resources. Please note that this is still a very
<em>experimental</em> project and we are constantly improving and
refining our services.
</p>
<img
src="./images/map.png"
alt="Photo of multiple highways on a mountain."
/>
<p>
With Car Sharing Supreme, you can search for rides going from a starting
city to an end city, or from any location within a 10 KM radius from the
starting location to any location within a 10-mile radius from the
ending location. Simply enter your desired route, and we will find all
available trips that match your criteria. Don't hesitate to give us a
try and <strong>share the ride</strong> with us!
</p>
<a href="./share-and-search.html">Try our services</a>
</header>
<!-- Header -->
<!-- Services -->
<section>
<h1>Our Services</h1>
<div class="cards">
<div class="card">
<img src="./images/search-rides.png" alt="Photo of a car." />
<h5 class="card-title">Search for Rides</h5>
<p class="card-text">
Find other travelers going to the same destination and share the
ride with them.
</p>
</div>
<div class="card">
<img src="./images/offer-rides.png" alt="Photo of a car." />
<h5 class="card-title">Offer Rides</h5>
<p>
Offer your own car for others to join and save on gas money and
reduce your carbon footprint.
</p>
</div>
<div class="card">
<img
src="./images/anytime-anywhere.png"
alt="Photo of a pocket watch."
/>
<h5 class="card-title">Anytime, Anywhere</h5>
<p>
Our platform is available anytime, anywhere, so you can share rides
and save money and resources whenever you need to travel.
</p>
</div>
</div>
</section>
<!-- Services -->
<!-- Footer -->
<footer>
<!-- Github -->
<div class="github">
<!-- Kasper -->
<a href="https://github.com/kaspervanm"></a>
<!-- Evan -->
<a href="https://github.com/evanpacini"></a>
</div>
<!-- Github -->
<!-- Copyright -->
<div class="copyright">
© 2022 Espersoft Inc. All rights reserved
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</body>
</html>