-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgames.html
77 lines (74 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My own website - Games</title>
<link rel="stylesheet" href="styles_games.css">
<link rel="icon" type="image/x-icon" href="images/favicon.png">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="games.html">Games</a><li></li>
</ul>
</nav>
<section class="main1">
<div class="desc1">
<ul>
<li>
<a href="https://store.steampowered.com/app/107410/Arma_3/?l=czech">
<img src="images/arma3.jpg" alt="arma3">
</a>
<p>
Arma 3 is a czech game developed by Bohemia Interactive <br>
It's a war simulator from first and third person view
</p>
</li>
<li>
<a href="https://store.steampowered.com/app/1174180/Red_Dead_Redemption_2/">
<img height="286px" src="images/reddead.jpg" alt="rdr2">
</a>
<p>
RDR2 was developed by Rockstar games <br>
Basically, It's GTA but with western style.
</p>
</li>
<li>
<a href="https://store.steampowered.com/app/65790/ARMA_Cold_War_Assault/">
<img height="286px" src="images/Operation_Flashpoint_cover.jpg" alt="ofp">
</a>
<p>
It's the first game of the Arma series <br>
First released in 2001, It's an older game but for It's time, it was original.
</p>
</li>
<div class="break"></div>
<li>
<a href="https://store.steampowered.com/app/394360/Hearts_of_Iron_IV/?l=czech&snr%3D1_4_4__104=">
<img src="images/hoi4.jpg" alt="hoi4">
</a>
<p>
A strategy game that takes place during world war 2 <br>
It's possible to install various mods to alter the gameplay
</p>
</li>
<li>
<a href="https://store.steampowered.com/app/1144200/Ready_or_Not/">
<img src="images/ron.jpg" alt="ron">
</a>
<p>
A first person shooter based on a swat unit responding <br>
to various violent calls.
</p>
</li>
</ul>
</div>
</section>
<footer>
<p>© 2024 Hery Licensed under the <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA license.</a></p>
</footer>
</body>
</html>