-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (65 loc) · 2.72 KB
/
index.html
File metadata and controls
75 lines (65 loc) · 2.72 KB
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
<!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>Document</title>
<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=Roboto&family=Roboto+Mono:wght@400;500&family=Rubik:wght@300;400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="header-bgr-color">
<div class="container">
<section class="header-block">
<article class="hedaer-block-logo">
<img src="/image/svg/Logo-large.svg" alt="logo">
</article>
<div class="hedaer-block-list-items">
<ul class="list-first">
<li class="item-first"><a href="">about</a></li>
<li><a href="#">map</a></li>
<li><a href="#">zoos</a></li>
<li><a href="#">contact us</a></li>
<li><a href="#">design</a></li>
</ul>
<ul class="list-second">
<input type="search" name="search" id="search" class="search">
<li><a href="#"><img src="/image/png/search.png" alt=""></a></li>
<li><a href="#">Log in</a></li>
<li class="sign-up"><a href="#">Sign up</a></li>
</ul>
</div>
</section>
</div>
</div>
</header>
<main>
<div class="main-header-bgr-img">
<img class="main-header-img" src="/image/png/bgr-header.png" alt="main header bgr">
<div class="container">
<section class="main-header-block">
<article class="main-header-block-text">
<span class="main-header-title-h1">Watch your favorite <b class="title-h1-weight">animals online</b></span>
<p class="main-header-description">
Observe different animals from around the world online in live time.
Help vulunteers to take a good care of animals, donate to your favorite ones.
</p>
<a class="main-header-button" href="#">Watch now</a>
</article>
<article class="main-header-block-video">
<img class="main-video-bgr" src="/image/png/Panda.png" alt="">
<a href=""><img class="main-video-play" src="/image/png/YT.png" alt="youtube"></a>
</article>
</section>
</div>
</div>
</main>
</body>
</html>