-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrust.html
More file actions
162 lines (156 loc) · 7.92 KB
/
rust.html
File metadata and controls
162 lines (156 loc) · 7.92 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"
href="./node_modules/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="./css/styles.css" />
<title>Rust</title>
</head>
<body class="bg-dark">
<div id="main-container" class="container pt-0 pb-5 bg-light px-0">
<!-- navigation -->
<nav class="navbar navbar-expand-lg bg-body-tertiary mb-5 py-0">
<div class="container-fluid text-bg-secondary">
<a class="navbar-brand" href="#">
<img src="./images/cod_icon.jpg" alt="COD"
height="40" />
</a>
<button class="navbar-toggler" type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse"
id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page"
href="./index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#"
role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Maps
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item"
href="./maps.html">Maps
Main</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item"
href="./shipment.html">Shipment</a></li>
<li><a class="dropdown-item"
href="./stash-house.html">Stash
House</a></li>
<li><a class="dropdown-item"
href="./das-haus.html">Das
Haus</a></li>
<li><a class="dropdown-item"
href="./shoot-house.html">Shoot
House</a></li>
<li><a class="dropdown-item"
href="./rust.html">Rust</a></li>
<li><a class="dropdown-item"
href="./meat-map.html">Meat</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- end navigation-->
<h2 class="text-center mb-5 mt-2">Rust</h2>
<div class="card text-bg-secondary">
<img src="./images/rust.jpg" class="card-img-top img-fluid"
width="100%" alt="Stash House Map" />
<div class="card-body fs-5">
<p class="card-text">"Rust" is renowned for its compact size
and intense gameplay. Despite its
relatively small footprint, the map offers a perfect
balance of open spaces and tight corridors,
fostering fast-paced and adrenaline-fueled encounters.
This dynamic layout ensures that players are
constantly engaged in exhilarating firefights, making
every match a thrilling experience from start
to finish.</p>
<p class="card-text">Overall, "Rust" earns its reputation as
one of the best maps in the 2023 edition of
Call of Duty: Modern Warfare 3 due to its intense
gameplay, strategic depth, and immersive
atmosphere. Whether you're a seasoned veteran or a
newcomer to the series, "Rust" offers an
exhilarating and unforgettable gaming experience that
keeps players coming back for more.
</p>
<div class="text-center">
<a class="btn btn-outline-dark btn-md"
href="./maps.html">Back to Maps</a>
</div>
</div>
</div>
</div>
<div class="container mb-5 mt-0 py-0 px-0">
<footer class="bg-light text-center">
<!-- Grid container -->
<div class="container p-4 pb-0">
<!-- Section: Form -->
<section class>
<form action>
<!--Grid row-->
<div class="row d-flex justify-content-center">
<!--Grid column-->
<div class="col-auto">
<p class="pt-2">
<strong>Sign up for my
newsletter</strong>
</p>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-md-5 col-12">
<!-- Email input -->
<div class="form-outline mb-4">
<input type="email" id="form5Example2"
class="form-control" />
<label class="form-label"
for="form5Example2">Email
address</label>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-auto">
<!-- Submit button -->
<button type="submit"
class="btn btn-primary mb-4">
Subscribe
</button>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</form>
</section>
<!-- Section: Form -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3"
style="background-color: rgba(0, 0, 0, 0.2);">
© 2024 Copyright:
<a class="text-dark" href="./index.html">Mark Cornelius</a>
</div>
<!-- Copyright -->
</footer>
</div>
<script
src="node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
</body>
</html>