-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game studio</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<header>
<p><span>Game</span> studio</p>
</header>
<main id="main">
<section class="first-section">
<h1>Best video games for you</h1>
</section>
<section class="second-section">
<h2>CHOOSE YOU GAME</h2>
<hr>
<article>
<img src="img/minecraft.jpg" alt="minecraft">
<h3>MINECRAFT</h3>
<p>Досліджуйте та будуйте безкінечні світи.</p>
</article>
<article>
<img src="img/Among Us.jpg" alt="among_us">
<h3>AMONG US</h3>
<p>Готуйте свій космічний корабель до вильоту!</p>
</article>
<article>
<img src="img/NFS.jpg" alt="need_for_speed">
<h3>NEED FOR SPEED</h3>
<p>Тюнінгуй авто і змагайся за призи у гонках.</p>
</article>
<article>
<img src="img/WoT.jpg" alt="world_of_tanks">
<h3>WORLD OF TANKS</h3>
<p>Занурся в атмосферу воєнних поєдинків.</p>
</article>
</section>
</main>
<footer> <h2 class="footer"><span>Web</span>Studio</h2>
<address>м. Київ, пр-т Лесі Українки, 26</address>
<a href="mailto:info@example.com">info@example.com</a>
<a href="tel:+380991111111">+38 099 111 11 11</a>
</footer>
</body>
</html>