-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcod6.html
More file actions
130 lines (125 loc) · 5.22 KB
/
Copy pathcod6.html
File metadata and controls
130 lines (125 loc) · 5.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Page - GameVerse</title>
<link rel="stylesheet" href="./css/gamepage.css">
</head>
<body>
<!-- Header -->
<div class="header">
<div class="logo">GameVerse</div>
<a href="#sign-up-form" class="sign-up-btn">Sign Up</a>
</div>
<!-- Desktop Navigation Bar -->
<div class="navbar-desktop">
<div class="nav-links">
<a href="index.html">Home</a>
<div class="dropdown">
<a href="#">Categories</a>
<div class="dropdown-content">
<div>
<span>Popular</span>
<a href="top.html">Top Sellers</a>
<a href="most.html">Most Played</a>
</div>
<div>
<span>New</span>
<a href="new.html">New Releases</a>
<a href="upcoming.html">Upcoming Releases</a>
</div>
</div>
</div>
<a href="games.html">Games</a>
<a href="store.html">Consoles & Gaming Peripherals</a>
<a href="about.html">About Us</a>
<a href="support.html">Support</a>
</div>
</div>
<!-- Mobile Navigation Bar -->
<div class="navbar-mobile">
<div class="nav-links">
<a href="index.html">Home</a>
<div class="dropdown">
<a href="#">Categories</a>
<div class="dropdown-content">
<div>
<span>Popular</span>
<a href="top.html">Top Sellers</a>
<a href="most.html">Most Played</a>
</div>
<div>
<span>New</span>
<a href="new.html">New Releases</a>
<a href="upcoming.html">Upcoming Releases</a>
</div>
</div>
</div>
<a href="games.html">Games</a>
<a href="store.html">Store</a>
<a href="about.html">About Us</a>
<a href="support.html">Support</a>
</div>
</div>
<!-- Game Banner Section -->
<div class="game-banner">
<div class="banner-image">
<img src="Images/cod6wall.jpg" alt="Call of Duty: Black Ops 6">
<div class="banner-overlay">
<h2>Call of Duty: Black Ops 6</h2>
<p>Call of Duty: Black Ops 6 is a tactical first-person shooter developed by Offworld Industries, officially released on September 23, 2020.
The game emphasizes teamwork, communication, and realistic combat experiences, bridging the gap between arcade shooters and
military simulations.</p>
</div>
</div>
</div>
<!-- Game Screenshots Section -->
<div class="screenshots-section">
<h2>Game Screenshots</h2>
<div class="screenshot-grid">
<div class="screenshot-item">
<img src="Images/cod1.jpg" alt="Call of Duty: Black Ops 6 Screenshot 1">
</div>
<div class="screenshot-item">
<img src="Images/cod4.jpg" alt="Call of Duty: Black Ops 6 Screenshot 2">
</div>
<div class="screenshot-item">
<img src="Images/cod2.jpg" alt="Call of Duty: Black Ops 6 Screenshot 3">
</div>
<div class="screenshot-item">
<img src="Images/cod3.jpg" alt="Call of Duty: Black Ops 6 Screenshot 4">
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<div class="footer-logo">
<div class="footer-logo-text">GameVerse</div><br>
<div class="footer-contact">
<p>Contact: +94 70 123 0456</p><br>
<p>Main Branch's Address: 123 Sanda Street, Colombo 07, Sri Lanka</p><br><br><br><br><br><br>
<p>© 2024 GameVerse. All rights reserved.</p>
</div>
</div>
<div class="footer-links">
<h3>Quick Links</h3>
<a href="index.html">Home</a>
<a href="top.html">Top Sellers</a>
<a href="most.html">Most Played</a>
<a href="new.html">New Releases</a>
<a href="upcoming.html">Upcoming Releases</a>
<a href="games.html">Games</a>
<a href="store.html">Consoles & Gaming Peripherals</a>
<a href="about.html">About Us</a>
<a href="support.html">Support</a>
</div>
<div class="footer-social">
<a href="https://www.facebook.com/"><img src="Images/fb.png" alt="Facebook"></a>
<a href="https://www.instagram.com/"><img src="Images/ig.jpg" alt="Instagram"></a>
<a href="https://x.com/?lang=en&mx=2"><img src="Imagestwo/x.png" alt="Twitter"></a>
<a href="https://discord.com/"><img src="Images/discord.jpg" alt="Discord"></a>
</div>
</div>
</body>
</html>