-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.html
118 lines (115 loc) · 5.47 KB
/
games.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Top 8 Games</title>
<link rel="stylesheet" href="./games.css">
</head>
<body>
<header>
<!-- Navigation Bar -->
<nav class="navbar">
<div>
<input type="button" value="Login" class="loginbtn">
</div>
</nav>
</header>
<main>
<!-- Banner -->
<section>
<div class="banner">
<div class="header">Top 8 Games for PC</div>
</div>
</section>
<!-- Contents -->
<section>
<div class="container">
<div class="box">
<div class="image">
</div>
<div class="details">
<a href="https://www.rockstargames.com/gta-v" target="_blank">
<h3>GTA V</h3>
<p>Grand Theft Auto V is a 2013 action-adventure game developed by Rockstar North and published by Rockstar Games. It is the seventh main entry in the Grand Theft Auto series, following 2008's Grand Theft Auto IV, and the fifteenth instalment overall</p>
</a>
</div>
</div>
<div class="box">
<div class="image1"></div>
<div class="details">
<a href="https://www.rockstargames.com/reddeadredemption" target="_blank">
<h3>RDR II</h3>
<p>Red Dead Redemption is a 2010 action-adventure game developed by Rockstar San Diego and published by Rockstar Games. A successor to 2004's Red Dead Revolver, it is the second game in the Red Dead series. Red Dead Redemption is set during the decline of the American frontier in the year 1911.</p>
</a>
</div>
</div>
<div class="box">
<div class="image2"></div>
<div class="details">
<a href="https://www.cyberpunk.net/us/en/" target="_blank">
<h3>Cyber Punk 2077</h3>
<p>Cyberpunk 2077 is a 2020 action role-playing video game developed by CD Projekt Red, and published by CD Projekt, and based on Mike Pondsmith's Cyberpunk tabletop game series. The plot is set in the fictional metropolis of Night City, California, within the dystopian Cyberpunk universe.</p>
</a>
</div>
</div>
<div class="box">
<div class="image3"></div>
<div class="details">
<a href="https://en.bandainamcoent.eu/elden-ring/elden-ring" target="_blank">
<h3>Elden Ring</h3>
<p>Elden Ring is a 2022 action role-playing game developed by FromSoftware. It was directed by Hidetaka Miyazaki with worldbuilding provided by American fantasy writer George R. R. Martin.</p>
</a>
</div>
</div>
</div>
<div class="container">
<div class="box">
<div class="image4"></div>
<div class="details">
<a href="https://www.fortnite.com/" target="_blank">
<h3>Fortnite</h3>
<p>Fortnite is an online video game and game platform developed by Epic Games and released in 2017. </p>
</a>
</div>
</div>
<div class="box">
<div class="image5"></div>
<div class="details">
<a href="https://www.playstation.com/en-in/games/god-of-war-ragnarok/" target="_blank">
<h3>God of War: Ragnarok</h3>
<p>God of War Ragnarök is an action-adventure game developed by Santa Monica Studio and published by Sony Interactive Entertainment.</p>
</a>
</div>
</div>
<div class="box">
<div class="image6"></div>
<div class="details">
<a href="https://www.thewitcher.com/pl/en/witcher3" target="_blank">
<h3>The Witcher 3: Wild Hunt</h3>
<p>The Witcher 3: Wild Hunt is a 2015 action role-playing game developed and published by CD Projekt. It is the sequel to the 2011 game The Witcher 2: Assassins of Kings and the third game in The Witcher video game series, played in an open world with a third-person perspective.</p>
</a>
</div>
</div>
<div class="box">
<div class="image7"></div>
<div class="details">
<a href="https://bethesda.net/en/game/doom" target="_blank">
<h3>Doom Eternal</h3>
<p>Doom Eternal is a 2020 first-person shooter game developed by id Software and published by Bethesda Softworks. </p>
</a>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer">
<div class="copy">
<h3 class="hxb">HXB.IZZ</h3>
© 2024 Habeeb Rahman Dev Inc.</div>
</div>
</footer>
</body>
</html>