-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
296 lines (261 loc) · 14.6 KB
/
game.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
<!-- Sven START -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>WinXWins - Index</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/favicons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/img/favicons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/favicons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/favicons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/favicons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/favicons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/favicons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/favicons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/img/favicons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/img/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicons/favicon-16x16.png">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Top Bar ======= -->
<div id="topbar" class="d-flex align-items-center fixed-top">
<div class="container d-flex justify-content-center justify-content-md-between">
<div class="contact-info d-flex align-items-center">
<i class="bi bi-phone d-flex align-items-center"><span>+41 78 624 24 19</span></i>
<i class="bi bi-clock d-flex align-items-center ms-4"><span> Mo-Sa: 08:00 - 17:00</span></i>
</div>
</div>
</div>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-cente">
<div class="container-fluid container-xl d-flex align-items-center justify-content-lg-between">
<!--<h1 class="logo me-auto me-lg-0"><a href="index.html">WinXWins</a></h1>-->
<!-- If we use a image logo some day -->
<a href="index.html" class="logo me-auto me-lg-0"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link" href="index.html">Home</a></li>
<li><a class="nav-link active" href="game.html">Spiel</a></li>
<li><a class="nav-link" href="news.html">Neuigkeiten</a></li>
<li><a class="nav-link" href="support.html">Support</a></li>
<li><a class="nav-link" href="about.html">Über uns</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<!--<section id="hero" class="d-flex align-items-center">
<div class="container position-relative text-center text-lg-start" data-aos="zoom-in" data-aos-delay="100">
<div class="row">
<div class="col-lg-8">
<h1>Willkommen auf <span>WinXWins</span></h1>
<h2>Das beste Spiel das es gibt. Ich weis das du es weisst.</h2>
<div class="btns">
<a href="game.html" class="btn-game animated fadeInUp">Games</a>
<a href="support.html" class="btn-support animated fadeInUp">Support</a>
</div>
</div>
</div>
</div>
</section><!-- End Hero -->
<!-- Sven END -->
<!-- Gaudenz START -->
<main id="main">
<div class="synth"
style="background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0) 0%,rgba(41, 41, 41, 0.25) 25%, rgba(41, 41, 41, 0.5) 50%,rgba(41, 41, 41, 0.75)75%,rgba(41, 41, 41, 0.85)85%, rgba(41, 41, 41, 1) 100%), url('assets/img/news/synthwave.jpg');">
</div>
<section->
<div class="container my-1 py-3">
<div class="row justify-content-evenly my-5">
<div class="game1 col-sm-5 col-lg-5">
<h1 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif"><b>IT'S ME...JOHNNY!</b></h1>
<div class="fade-in-my-text"><img src="assets/img/game/silverhand_2.png" class="img-fluid"
alt="cyberp77021_teaser"></div>
</div>
<div class="game1 col-sm-5 col-lg-5">
<h1 style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;"><b>GAME HISTORY</b></h1>
<div class="fade-in-my-text">
<p style="font-size: 1.2rem;">Cyberpunk 2077 is an action role-playing video game developed by CD Projekt
Red and published by CD Projekt. The story takes place in Night City, an open world set in the Cyberpunk
universe. Players assume the first-person perspective of a customisable mercenary known as V, who can
acquire skills in hacking and machinery with options for melee and ranged combat. The story follows V's
struggle as he deals with a mysterious cybernetic implant that threatens to overwrite his body with the
personality and memories of a deceased celebrity only perceived by V; the two must work together if
there is any hope to separate the two and save V's life.</p>
</div>
</div>
</div>
<div class="row justify-content-evenly my-5">
<div class="game1 col-sm-5 col-lg-5">
<h1 style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;"><b>CYBERPUNK 77:</b><br><b>
<h2>Official Trailer/Edgerunners
</b></h2></b></h1>
<div class="fade-in-my-text">
<h2 style="font-size: 2rem;">Original game trailer. See it here first!</h2>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vel quis ex quia ad aliquid harum ratione
odio commodi fugit, aperiam vero, animi voluptates itaque perspiciatis possimus reprehenderit quaerat
quam consequatur?</p>
</div>
<div class="fade-in-my-text">
<div class="ratio ratio-16x9">
<iframe width="1vh" src="https://www.youtube.com/embed/8X2kIfS6fb8" class="img-fluid"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; allowfullscreen"></iframe>
</div>
<div class="game1 col py-3"></div>
<h2 style="font-size: 2rem;">Netflix original spin-off-series: Edgerunners!</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Repellendus architecto sequi libero facere,
placeat rem ipsum sint officiis praesentium labore excepturi rerum ducimus eum perferendis totam eos
pariatur accusamus corrupti.</p>
<div class="ratio ratio-16x9">
<iframe width="1vh" src="https://www.youtube.com/embed/JtqIas3bYhg" class="img-fluid"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; allowfullscreen"></iframe>
</div>
</div>
</div>
<div class="game1 col-sm-5 col-lg-5">
<h1 style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;"><b>NIGHT CITY<br> – The
City That Never Sleeps</b></h1>
<div class="fade-in-my-text">
<p style="font-size: 1.2rem;">Night City is an American megacity in the Free State of North California,
controlled by corporations and unassailed by the laws of both country and state. It sees conflict from
rampant gang wars and its ruling entities contending for dominance. The city relies on robotics for
everyday aspects like waste collection, maintenance, and public transportation. Its visual identity is
derived from the four eras it underwent—austere Entropism, colourful Kitsch, imposing Neomilitarism, and
opulent Neokitsch. Homelessness abounds but does not preclude cybernetic modification for the poor,
giving rise to cosmetic addiction and consequent violence.</p>
</div>
<div class="fade-in-my-text"><img src="assets/img/game/cyberpink_cityview.png" class="img-fluid"
alt="cyberp77021_teaser"></div>
</div>
</div>
<div class="row justify-content-evenly my-5">
<div class="game1 col-sm-5 col-lg-5">
<h1 style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif"><b>CYBERPUNK 77<br>Vincent &
Valerie</b></h1>
<div class="fade-in-my-text"><img src="assets/img/game/Cyberpunk2077_VIncent_Valerie.png" class="img-fluid"
alt="cyberp77021_teaser"></div>
</div>
<div class="game1 col-sm-5 col-lg-5">
<h1 style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;"><b>CYBERPUNK 77 Gameplay</b></h1>
<div class="fade-in-my-text">
<p style="font-size: 1.2rem;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit, ab.
Totam ab perferendis aspernatur, iste eaque quis cumque suscipit, natus laboriosam nostrum atque est
expedita pariatur repudiandae in! Magni, quos? Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Dolores odio sunt magnam pariatur, iure voluptates quae eligendi, laboriosam commodi aspernatur
temporibus ut dolorum cumque minus dolorem omnis voluptate. Temporibus, iusto.</p>
</div>
<div class="fade-in-my-text">
<div class="ratio ratio-16x9">
<iframe width="1vh" src="https://www.youtube.com/embed/ZY2PO0RvOKA" class="img-fluid"
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay;">
</iframe>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="my-new-container">
<div class="row justify-content-start">
<div class="col-2">
<a class="btn btn-sm btn-outline-warning" href="https://www.monsterhunter.com/rise-sunbreak/en-us/"
role="button" target="_blank">Wanna get a good game?</a>
</div>
</div>
</div>
</section>
</main><!-- End #main -->
<!-- Gaudenz END -->
<!-- Sven START -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="footer-info">
<h3>WinXWins</h3>
<p>
Räffelstrasse 12<br>
8045, Zürich<br><br>
<strong>Telefon:</strong> +41 78 624 24 19<br>
<strong>Email:</strong> [email protected]<br>
</p>
<div class="social-links mt-3">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Nützliche Links</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="index.html">Home</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="game.html">Spiel</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="news.html">Neuigkeiten</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="support.html">Support</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="about.html">Über uns</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="impressum.html">Impressum</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Unsere Neuigkeiten</h4>
<p>Bleibe immer auf dem neusten stand.</p>
<form action="" method="post">
<input type="email" name="email"><input type="submit" value="Subscribe">
</form>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong><span>WinXWins</span></strong>. All Rights Reserved
</div>
<div class="credits">
Designed by <a href="https://svenbledt.github.io/">Sven Bledt & Team</a>
</div>
</div>
</footer><!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>
<!-- Sven END -->