-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·94 lines (94 loc) · 3.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Barsuk studio</title>
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<header class="header">
<div class="container logo">
<div class="row">
<div class="col-sm-6 d-flex justify-content-center">
<a href="index.html" class="img_logo"><img src="img/site_icon.svg"></a>
</div>
<div class="col-sm-6 d-flex justify-content-center">
<p class="menu_item">
<a href="#games">Games</a>
</p>
</div>
</div>
</div>
<div class="container info">
<div class="row">
<div class="col-sm-6 d-flex justify-content-center">
<div class="offer">
<h3 class="offer_title text-center">
Try the easy-to-learn casual games
</h3>
<p class="offer_text text-center">
Hello. I make unique casual indie games in vector graphics.
</p>
<p class="offer_text text-center">
Have fun!
</p>
<div class="link_logo-group offer_text text-center">
<p class="link_logo">
<a href="https://play.google.com/store/apps/dev?id=6043684000948739501"><img src="img/site_googleplay-link.svg"></a>
</p>
<p class="link_logo">
<a href="https://apps.apple.com/us/developer/aleh-belko/id1441871074"><img src="img/site_appstore-link.svg"></a>
</p>
<p class="link_logo">
<a href="https://www.youtube.com/channel/UCI24p4woAtftcQUt-_KJt-g"><img src="img/site_youtube-link.svg"></a>
</p>
<p class="link_logo">
<a href="https://www.instagram.com/barsukstudio"><img src="img/site_instagram-link.svg"></a>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<img src="img/site_phon.svg" class="phone_pick">
</div>
</div>
</div>
</header>
<section id="games">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="col-lg-6 col-md-6 col-sm-6 d-flex justify-content-center game-pick">
<a class="game" href="gym.html"><img src="img/games_pick/site_gym-pick.svg" alt="Gym clicker"></a>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 d-flex justify-content-center game-pick">
<a class="game" href="gym2.html"><img src="img/games_pick/site_gym_2-pick.svg" alt="Gym clicker 2"></a>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 d-flex justify-content-center game-pick">
<a class="game" href="miner.html"><img src="img/games_pick/site_miner-pick.svg" alt="Miner-Lumberjack"></a>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 d-flex justify-content-center game-pick">
<a class="game" href="fight.html"><img src="img/games_pick/site_fight-pick.svg" alt="Last Fight"></a>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 d-flex justify-content-center game-pick">
<a class="game" href="life.html"><img src="img/games_pick/site_life-pick.svg" alt="Last Fight"></a>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<div class="credits">
<p class="name">© 2022 <span>Aleh Belko</span></p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>