-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (87 loc) · 2.53 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
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Nord</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav class="container">
<img src="./images/logo.png"
srcset="./images/logo@2x.png 2x,
./images/logo@3x.png 3x"
class="Logo"/>
<ul class="container">
<li><a href="#">SUBSCRIBE</a></li>
<li><a href="#" class="black_button">GET IT NOW</a></li>
</ul>
</nav>
<div class="header_info">
<img src="./images/screen.png" class="Screen">
<div class="header_info_text">
<h2>Join more than<span> 1000+ </span>satisfied users</h2>
<p>People are definitely a company's greatest asset. <br/>
It doesn't make any difference <br/>
whether the product is cars or cosmetics. <br/>
A company is only as good as the people it keeps.<br/>
</p>
<img src="./images/icons/play-button.svg"
class="Play-Button">
</div>
</div>
</header>
<article class="dark">
<div class="dark-info">
<div class="dark-info-block">
<h2>What you get</h2>
<p>People are definitely a company's greatest asset. </br>
It doesn't make any difference </br>
whether the product is cars or cosmetics. </br>
A company is only as good as the people it keeps.
</p>
<a href="#" class="green_button">GET IT NOW</a>
</div>
<img src="./images/screen-2.png"
class="Screen-1">
<img src="./images/screen-2.png"
class="Screen-1">
</div>
</article>
<article id="somewords">
<div class="somewords_wrap">
<div class="somewords_header">
<h2>Some words from our users</h2>
<p>People are definitely a company's greatest asset. </br>
It doesn't make any difference</p>
</div>
<div class="somewords_contemt">
<img src="./images/screen.png" class="Screen2">
<div class="somewords_msg">
<p class="quote_left">“</p>
<p class="somewords_msg_text">People are definitely a company's greatest asset. It doesn't make
any difference whether the product is cars or cosmetics.
A company is only as good as the people it keeps.
</p>
<p class="msg_author">John Doe</p>
<p class="quote_right">“</p>
</div>
</div>
</div>
</article>
<section id="join_us">
<h2>Join us</h2>
<p>We will send you from time to time </br>
mail about our news and offers</p>
<form>
<input type="text" value="Your Mail"/>
<a href="" class="white_button">SEND</a>
</form>
</section>
<footer>
<img src="./images/logo.png"/>
<p> © 2016 - <a href="">NORD</a> All Right Reserved</p>
</footer>
</body>
</html>