-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (96 loc) · 4.48 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
95
96
97
98
99
100
101
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Best of the best</title>
<link href="style.css" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
</head>
<body >
<header>
<section>
<img src="img/logo.png" alt="">
<div class="dropdown open">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Опции
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="">Игры</a>
<a class="dropdown-item" href="">Фильмы</a>
<a class="dropdown-item" href="">Книги</a>
<a class="dropdown-item" href="">Музыка</a>
<a class="dropdown-item" href="">Пресса</a>
</div>
</div>
<label>Поиск:
<input type="text" placeholder="...">
</label>
</section>
<div>
<h1>Лучшие из лучших!</h1>
<p>Топ бесплатных игр по версии Google Play Маркет на 25.06.2018</p>
</div>
</header>
<main>
<section>
<figure>
<img src="img/game1.jpg" alt="">
<figcaption>
<h2>kick the buddy</h2>
<p>Playgendary</p>
<span>Action</span>
<p>Explode, destroy, fire, shoot, smash, freeze, send the power of the Gods and don't even think about stopping! Man, you now have a virtually limitless arsenal to beat: rockets, grenades, automatic rifles … and even a NUCLEAR BOMB!</p>
<p>We present to you Kick the Buddy — it’s more than just a game! It’s a top interactive action game!</p>
</figcaption>
</figure>
<figure>
<img src="img/game2.jpg" alt="">
<figcaption>
<h2>helix jump</h2>
<p>VOODOO</p>
<span>Action</span>
<p>Exciting adventure of the bouncing ball through the helix tower labyrinth.</p>
<p>One-tap easy-to-learn controls, rich visual effects and addictive gameplay mechanics.</p>
</figcaption>
</figure>
<figure>
<img src="img/game3.jpg" alt="">
<figcaption>
<h2>sling drift</h2>
<p>tastypill</p>
<span>Action</span>
<p>Fast action drifting with your car around an endless race track.One tap easy to learn controls with addictive gameplay.</p>
<p>How far can you go?</p>
</figcaption>
</figure>
<figure>
<img src="img/game4.png" alt="">
<figcaption>
<h2>knife hit</h2>
<p>ketchapp</p>
<span>Arcades</span>
<p>Throw the knives into the logs to break them. Slash the apples and unlock new knives. Each 5th stage is defended by a boss - beat them to get exclusive knives! Be careful to not hit the knives or the spikes. Time your actions, target carefully and become the knife master!</p>
<p>Can you beat all the bosses?</p>
</figcaption>
</figure>
<figure>
<figcaption>
<p>
Оцените проделанную работу:
</p>
<div class="rating">
<div class="rating-item active" data-rate="1"></div>
<div class="rating-item" data-rate="2"></div>
<div class="rating-item" data-rate="3"></div>
<div class="rating-item" data-rate="4"></div>
<div class="rating-item" data-rate="5"></div>
</div>
</figcaption>
</figure>
</section>
</main>
<script src="script.js"></script>
<script src="jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>