-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (84 loc) · 3.52 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
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap" rel="stylesheet"/>
<link rel="shortcut icon" href="images/image.png" type="image/x-icon" />
<link rel="stylesheet" href="styles/style.css" />
<title>farm game</title>
</head>
<body>
<!-- wrapper -->
<div class="wrapper">
<!-- section 1 -->
<section class="section-conteiner" id="section-conteiner-first">
<span><img src="images/logo.svg" alt="logo" class="logo" /></span>
<div class="header">
<span
><img
src="images/image.png"
alt="cow on orage background color"
class="image-cow"
/></span>
<div class="text-conteiner">
<h1 class="text-header">Legendary farm game in your hands</h1>
<p class="conent-text">Play as a Helga the Cow to protect your animal friends from the Farmer</p>
<a href="#section-conteiner-second" class="btn" id="button-first">Play now</a>
</div>
</div>
</section>
<!-- section 2 -->
<section class="section-conteiner" id="section-conteiner-second">
<div class="section-two">
<h2 class="text-section-title">What`s inside the game</h2>
<div class="list-conteiner">
<span><img src="images/shoes.png" class="image-icon" /></span>
<div>
<h3 class="text-item-first">Run as fast as you can</h3>
<p class="text-item-second">You have to be very fast to not be caught by the Farmer</p>
</div>
</div>
<div class="list-conteiner">
<span><img src="images/duck.png" class="image-icon" /></span>
<div>
<h3 class="text-item-first">Protect your animal friends</h3>
<p class="text-item-second">You have so many friends – protect them all!</p>
</div>
</div>
<div class="list-conteiner">
<span><img src="images/cup.png" class="image-icon" /></span>
<div>
<h3 class="text-item-first">Score as much points as you can</h3>
<p class="text-item-second">In the end this is all about points. Show your strength!</p>
</div>
</div>
</div>
</section>
<!-- section 3 -->
<section class="section-conteiner" id="section-conteiner-third">
<div class="section-third">
<span
><a href="https:google.com" target="_blank"
><img src="images/ladybug.png" class="image-ladybug" /></a
></span>
<div class="text-conent-ladybug">
<h2 class="title-section-third">More animals you save, closer your victory!</h2>
<p class="text-section-third">Don`t miss the chance to make the Farmer cry again. Animals, be strong!</p>
<a href="#" class="btn" id="button-two">Play now</a>
</div>
</div>
</section>
<!-- footer -->
<footer class="footer">
<div class="footer-conteiner">
<p class="footer-text">2030 Ⓒ All rights reserved</p>
</div>
</footer>
</div>
<script src="scripts/main.js"></script>
</body>
</html>