-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
290 lines (255 loc) · 9.85 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="nev.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="loader.css">
<link rel="icon" type="image/x-icon" href="GDGS.png">
<title>GDGS Gaming</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
position: relative;
}
/* Navigation Bar Styles */
nav {
background-color: #333;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
/* Logo, Company Name, and Marquee in Row */
.nav-left {
display: flex;
align-items: center;
}
.logomode {
width: 50px;
height: 50px;
margin-right: 15px;
}
.company-info {
color: white;
margin-right: 15px;
}
.logonamemode {
font-size: 1.5rem;
color: gold;
}
.marqueemode {
color: yellow;
}
.marqueemode h3 {
font-size: 1rem;
display: inline;
}
/* Horizontal Button Menu */
.menumode {
display: flex;
align-items: center;
gap: 10px;
}
.menubottonmode, .menubottonmode1 {
text-decoration: none;
color: white;
padding: 10px 20px;
background-color: #007BFF;
border-radius: 5px;
cursor: pointer;
text-align: center;
}
.menubottonmode1 {
background-image: linear-gradient(rgb(0, 0, 90), rgb(38, 32, 0), black);
border-radius: 5px;
}
/* Search Bar outside Nav */
.search-bar {
margin: 2rem auto;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
#search-input {
width: 50%;
padding: 10px;
font-size: 1rem;
border: 2px solid #ccc;
border-radius: 5px;
}
#search-button {
padding: 10px;
margin-left: 10px;
background-color: #007BFF;
border: none;
color: white;
cursor: pointer;
border-radius: 5px;
}
#search-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<section>
<!-- Navigation Bar -->
<nav class="navmode">
<!-- Left side: Logo, Company Name, and Marquee -->
<div class="nav-left">
<!-- Logo -->
<img src="a5.png" class="logomode" alt="Logo">
<!-- Company name -->
<div class="company-info">
<span class="logonamemode">GDGS</span>
</div>
<!-- Marqudee -->
<marquee class="marqueemode" scrollamount="10">
<h3>Coming Soon <strong><i><b>Yunso Fight</b></i></strong></h3>
</marquee>
</div>
<!-- Right side: Menu Buttons -->
<div class="menumode">
<a class="menubottonmode" href="index.html">HOME</a>
<a class="menubottonmode" href="about.html">ABOUT</a>
<a class="menubottonmode" href="downlord.html">DOWNLOAD</a>
<a class="menubottonmode" href="commingsoon.html">COMING</a>
<a class="menubottonmode" href="gamingsection.html">GAMES</a>
<button class="menubottonmode1">SIGNIN</button>
<button class="menubottonmode1">SIGNUP</button>
</div>
</nav>
<!-- Permanent Search Bar -->
<div class="search-bar">
<input type="text" id="search-input" placeholder="Search for games...">
<button id="search-button">Search</button>
</div>
<!-- Overlay for Search Results -->
<div id="overlay">
<div id="search-results">
<h2>Search Results</h2>
<!-- Results will be dynamically inserted here -->
</div>
</div>
</section>
<section class="hero-section">
<div class="hero-content">
<h1>Welcome to GDGS</h1>
<p>Experience the Future of Gaming</p>
</div>
</section>
<section class="luxury-content">
<div class="content-block">
<h2>Exquisite Designs</h2>
<p>Our games are crafted with the finest attention to detail, providing you with an unmatched visual experience.</p>
</div>
<div class="content-block">
<h2>Immersive Gameplay</h2>
<p>Step into a world where gameplay mechanics are refined to perfection, ensuring you are always engaged.</p>
</div>
<div>
<video style="display: block;
margin-left: auto;
margin-right: auto;
width: 50%;" autoplay loop muted>
<source type="video/mp4" src="gdg.mp4">
</video>
</div>
<div class="content-block">
<h2>Unparalleled Performance</h2>
<p>Enjoy seamless gaming experiences powered by the latest technology, delivering smooth and responsive gameplay.</p>
</div>
</section>
<section class="parallax-section">
<div class="parallax-content">
<h2>Join the Revolution</h2>
<p>Be a part of the gaming revolution that is set to change the industry forever.</p>
</div>
</section>
<section class="gallery-section">
<div class="gallery-item">
<img src="t1.jpg" alt="Game Screenshot 1">
</div>
<div class="gallery-item">
<img src="t2.jpg" alt="Game Screenshot 2">
</div>
<div class="gallery-item">
<img src="t3.jpg" alt="Game Screenshot 3">
</div>
</section>
<section id="game" class="platform-section">
<h2>Explore Our Platforms</h2>
<div class="platform-buttons">
<button class="platform-btn" onclick="window.location.href='gamingsection.html';">Online</button>
<button class="platform-btn" onclick="window.location.href='gamingsection.html';">PlayStation</button>
<button class="platform-btn" onclick="window.location.href='gamingsection.html';">Personal Computer</button>
<button class="platform-btn" onclick="window.location.href='gamingsection.html';">Cloud Gaming Services</button>
<button class="platform-btn" onclick="window.location.href='gamingsection.html';">Mobile Devices</button>
<button class="platform-btn" onclick="window.location.href='gamingsection.html';">VR Systems</button>
<button class="platform-btn" onclick="window.location.href='gamingsection.html';">Web Browser Games</button>
<button class="platform-btn" onclick="window.location.href='gamingsection.html';">Offline</button>
<button class="platform-btn" onclick="window.location.href='gamingsection.html';">Streaming Devices</button>
</div>
</section>
</section>
<section id="about">
<footer class="footer">
<div class="container">
<div class="footer-row">
<div class="footer-col">
<h4>Company</h4>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Our Services</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Affiliate Program</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Get Help</h4>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Shipping</a></li>
<li><a href="#">Returns</a></li>
<li><a href="#">Order Status</a></li>
<li><a href="#">Payment Options</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Online Shop</h4>
<ul>
<li><a href="#">Watch</a></li>
<li><a href="#">Bag</a></li>
<li><a href="#">Shoes</a></li>
<li><a href="#">Dress</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Follow Us</h4>
<div class="social-links">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
<a href="#"><i class="fab fa-tiktok"></i></a>
</div>
</div>
</div>
</div>
</footer>
</section>
</body>
<script src="loader.js"></script>
<script src="nav.js"></script>
</html>