-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame-server.html
419 lines (403 loc) · 16.4 KB
/
game-server.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Realms Hosting</title>
<link rel="stylesheet" href="./assets/css/bootstrap-utils.css" />
<link rel="stylesheet" href="./assets/css/bootstrap-grid.min.css" />
<link rel="stylesheet" href="./assets/css/utilities.css" />
<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body>
<div id="dark-overlay"></div>
<nav id="navbar">
<div class="wrapper">
<a href="./index.html" class="logo">
<img src="./assets/images/logo.png" alt="logo" />
</a>
<ul class="nav d-md-flex d-none">
<li><a href="./index.html">HOME</a></li>
<li class="active"><a href="./game-server.html">GAME SERVERS</a></li>
<li><a href="./fivem-server.html">VPS HOSTING</a></li>
<li><a href="#">KnowledgeBase</a></li>
<li><a href="#">STATUS</a></li>
<li><a href="#">BLOG</a></li>
</ul>
<a href="#" class="account d-md-flex d-none">
<img src="./assets/vectors/account-ico.svg" alt="account" /> MY
ACCOUNT
</a>
<div class="hamburger d-md-none d-block">
<img src="./assets/images/hamburger.png" alt="hamburger" />
</div>
<div class="nav-sm">
<div id="close">×</div>
<ul class="nav">
<li><a href="./index.html">HOME</a></li>
<li class="active">
<a href="./game-server.html">GAME SERVERS</a>
</li>
<li><a href="./fivem-server.html">VPS HOSTING</a></li>
<li><a href="#">KnowledgeBase</a></li>
<li><a href="#">STATUS</a></li>
<li><a href="#">BLOG</a></li>
</ul>
</div>
</div>
</nav>
<main>
<section class="game-server" id="hero">
<h1 class="main-heading mb-5">GAME SERVER HOSTING</h1>
<a class="btn outlined inverted primary-inverted" href="#"
>DISCORD SUPPORT</a
>
<img class="mouse" src="./assets/images/mouse-scroll.png" alt="mouse" />
</section>
<section id="game-servers">
<img
class="dots-top-right"
src="./assets/vectors/dots-rect.svg"
alt="dots-top-right"
/>
<div class="heading-underlined start">
<h1 class="heading">GAME SERVERS</h1>
</div>
<div class="img-container">
<a href="#" class="item img-hover-effect-wrapper">
<img src="./assets/images/game-server-1.png" alt="server-1" />
</a>
<a href="./fivem-server.html" class="item img-hover-effect-wrapper">
<img src="./assets/images/game-server-2.png" alt="server-2" />
</a>
<a href="#" class="item img-hover-effect-wrapper">
<img src="./assets/images/game-server-3.png" alt="server-3" />
</a>
<a href="#" class="item img-hover-effect-wrapper">
<img src="./assets/images/game-server-4.png" alt="server-4" />
</a>
<a href="#" class="item img-hover-effect-wrapper">
<img src="./assets/images/game-server-5.png" alt="server-5" />
</a>
<a href="#" class="item img-hover-effect-wrapper">
<img src="./assets/images/game-server-6.png" alt="server-6" />
</a>
<div class="item d-sm-block d-none"></div>
<a class="item img-hover-effect-wrapper">
<img src="./assets/images/game-server-7.png" alt="server-7" />
</a>
<div class="item d-sm-block d-none"></div>
</div>
<img
class="dots-bottom-left"
src="./assets/vectors/dots-rect.svg"
alt="dots-bottom-left"
/>
</section>
<section id="realms-hosting-panel">
<h1 class="heading">REALMS HOSTING PANEL</h1>
<h3 class="sub-heading">Checkout or Game Panel</h3>
<div class="showcase">
<div class="container-fluid">
<div class="row">
<div class="col-md-9 d-flex justify-content-center row">
<div>
<div class="img-wrap">
<img
class="feature-img"
src="./assets/images/editor.png"
alt="realm-hosting"
/>
</div>
</div>
</div>
<div class="col-md-3 row">
<div class="col-md-12 col-6">
<div
data-img-name="./assets/images/control.png"
class="btn outlined mb-4"
>
Control Panel
</div>
</div>
<div class="col-md-12 col-6">
<div
data-img-name="./assets/images/console.png"
class="btn outlined mb-4"
>
Console
</div>
</div>
<div class="col-md-12 col-6">
<div
data-img-name="./assets/images/editor.png"
class="btn outlined bg-black mb-4"
>
File Editor
</div>
</div>
<div class="col-md-12 col-6">
<div
data-img-name="./assets/images/file.png"
class="btn outlined mb-4"
>
File Manager
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="pattern-bg">
<section id="reviews">
<div class="vertical-line"></div>
<div class="heading-underlined start">
<h1 class="heading">REVIEW'S</h1>
</div>
<ul class="reviews">
<li class="item">
<h3 class="name">JECK SMITH</h3>
<p class="content">
It is a long established fact that a reader will be distracted
by the readable content of a page when looking at its layout.
The point of using Lorem Ipsum is that it has a more-or-less
normal distribution of
</p>
<img
class="rating"
src="./assets/images/rating.png"
alt="rating"
/>
</li>
<li class="item">
<h3 class="name">VICTORIA</h3>
<p class="content">
It is a long established fact that a reader will be distracted
by the readable content of a page when looking at its layout.
The point of using Lorem Ipsum is that it has a more-or-less
normal distribution of
</p>
<img
class="rating"
src="./assets/images/rating.png"
alt="rating"
/>
</li>
<li class="item">
<h3 class="name">ROBERT</h3>
<p class="content">
It is a long established fact that a reader will be distracted
by the readable content of a page when looking at its layout.
The point of using Lorem Ipsum is that it has a more-or-less
normal distribution of
</p>
<img
class="rating"
src="./assets/images/rating.png"
alt="rating"
/>
</li>
<li class="item">
<h3 class="name">ALEX</h3>
<p class="content">
It is a long established fact that a reader will be distracted
by the readable content of a page when looking at its layout.
The point of using Lorem Ipsum is that it has a more-or-less
normal distribution of
</p>
<img
class="rating"
src="./assets/images/rating.png"
alt="rating"
/>
</li>
<li class="item">
<h3 class="name">AMANDA</h3>
<p class="content">
It is a long established fact that a reader will be distracted
by the readable content of a page when looking at its layout.
The point of using Lorem Ipsum is that it has a more-or-less
normal distribution of
</p>
<img
class="rating"
src="./assets/images/rating.png"
alt="rating"
/>
</li>
</ul>
</section>
<section id="faq">
<h1 class="heading"><span class="underline">FAQ</span></h1>
<div class="qas">
<div class="item">
<h3 class="question">
What factors should I consider when purchasing homeowners
insurance?
<div class="toggler">
<img
src="./assets/images/question-toggler.png"
alt="toggler"
/>
</div>
</h3>
<h4 class="answer">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into
electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets
containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of
Lorem Ipsum.
</h4>
</div>
<div class="item">
<h3 class="question close">
What factors should I consider when purchasing homeowners
insurance?
<div class="toggler">
<img
src="./assets/images/question-toggler.png"
alt="toggler"
/>
</div>
</h3>
<h4 class="answer" style="display: none">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into
electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets
containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of
Lorem Ipsum.
</h4>
</div>
<div class="item">
<h3 class="question close">
What factors should I consider when purchasing homeowners
insurance?
<div class="toggler">
<img
src="./assets/images/question-toggler.png"
alt="toggler"
/>
</div>
</h3>
<h4 class="answer" style="display: none">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into
electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets
containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of
Lorem Ipsum.
</h4>
</div>
<div class="item">
<h3 class="question close">
What factors should I consider when purchasing homeowners
insurance?
<div class="toggler">
<img
src="./assets/images/question-toggler.png"
alt="toggler"
/>
</div>
</h3>
<h4 class="answer" style="display: none">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into
electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets
containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of
Lorem Ipsum.
</h4>
</div>
<div class="item">
<h3 class="question close">
What factors should I consider when purchasing homeowners
insurance?
<div class="toggler">
<img
src="./assets/images/question-toggler.png"
alt="toggler"
/>
</div>
</h3>
<h4 class="answer" style="display: none">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into
electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets
containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of
Lorem Ipsum.
</h4>
</div>
</div>
</section>
</div>
</main>
<footer id="footer" class="pb-3 pt-5">
<div class="wrapper">
<img
class="line"
src="./assets/images/footer-clipped-path.psd"
alt=""
/>
<div class="navbar">
<a class="logo" href="./index.html">
<img src="./assets/vectors/logo.svg" alt="logo" />
</a>
<div class="trustpilot">
<a class="text-primary" href="#">Trustpilot</a>
</div>
<ul class="nav d-flex justify-content-end align-items-center">
<li class="nav-item"><a href="./index.html">HOME</a></li>
<li class="nav-item"><a href="#">STATUS</a></li>
<li class="nav-item">
<a href="./tos.html">TERMS AND SERVICES</a>
</li>
</ul>
</div>
<div class="d-flex justify-content-between align-items-center offer">
<span>Get amazing cheap FiveM Server Hosting</span>
<a href="#">
<img src="./assets/vectors/facebook.svg" alt="facebook" />
</a>
</div>
<div class="copyright text-primary text-center py-3">
© 2021 Realms Hosting, All rights reserved
</div>
</div>
</footer>
<script
type="text/javascript"
src="https://code.jquery.com/jquery-1.11.0.min.js"
></script>
<script
type="text/javascript"
src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"
></script>
<script src="./assets/js/game-server.js"></script>
<script src="./assets/js/app.js"></script>
</body>
</html>