-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshipment.html
More file actions
168 lines (162 loc) · 8.33 KB
/
Copy pathshipment.html
File metadata and controls
168 lines (162 loc) · 8.33 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
163
164
165
166
167
168
<!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>Shipment</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">Shipment</h2>
<div class="card text-bg-secondary">
<img src="./images/shipment.jpg" class="card-img-top img-fluid"
width="70%" alt="Shipment Map" />
<div class="card-body fs-5">
<p class="card-text">In the 2023 edition of Call of Duty:
Modern Warfare 3, the Shipment map remains a
beloved classic, cherished by players for its fast-paced
and chaotic gameplay. Originally introduced
in the original 2011 release, the Shipment map has
undergone a revitalization for the modern gaming
landscape, retaining its iconic layout while receiving
visual enhancements and tweaks to suit
contemporary standards.</p>
<p class="card-text">
Shipment is renowned for its small size, tight
corridors, and minimalistic design, creating an
intense and frenetic atmosphere where every corner could
spell danger. The map's compact layout
promotes constant action and close-quarters combat,
making it a favorite among players who thrive in
fast-paced engagements and adrenaline-fueled firefights.
Whether you're navigating through shipping
containers, dodging enemy fire in narrow alleyways, or
strategically positioning yourself for the
next ambush, Shipment guarantees non-stop excitement and
pulse-pounding moments for players of all
skill levels.
</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>