-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 2.84 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Red Rocket - Home</title>
<link rel="stylesheet" href="css/main.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-md">
<div class="container-fluid">
<a class="navbar-brand ps-4" id="logo" href="#">RedRocket</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#redrocketNavbar"
aria-controls="redrocketNavbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="redrocketNavbar">
<div class="navbar-nav ms-auto p-2 d-flex justify-content-center align-items-center">
<a class="nav-link ms-4" href="#services">Services</a>
<a class="nav-link ms-4" href="#about">About</a>
<a class="nav-link ms-4" href="#sponsors">Our Sponsors</a>
<a href="prenote.html" id="prenote" class="cta ms-4"><button>Prenote Online</button></a>
</div>
</div>
</div>
</nav>
<div class="container-fluid p-0">
<div id="big-image"></div>
<div id="services">
<h1 class="d-flex justify-content-center py-3">Our Services</h1>
<div class="row">
<div class="col-md-4 col-12 d-flex justify-content-center py-3">
<img src="images/refulling_robot.jpg" class="poster" alt="">
</div>
<div class="col-md-4 col-12 d-flex justify-content-center py-3">
<img src="images/services_2.jpg" class="poster" alt="">
</div>
<div class="col-md-4 col-12 d-flex justify-content-center py-3">
<p id="services-text">
We offer fusion and coolant refilling services as well as gasoline and diesel. We have avaible Coolant A
and Coolant C at our gas stations. At our largest Red Rocket stations are included convenience stores
offering Nuka-Cola soft drinks, slushies, tourist pamphlets, and Gray Tortoise cigarettes. The
facilities offered car washing services, frequently bundled with refueling, along with Red Rocket
Restaurants that are fully automated and open 24/7!
</p>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>