-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (70 loc) · 2.74 KB
/
index.html
File metadata and controls
72 lines (70 loc) · 2.74 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
<!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="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/reset.css" />
<title>Task Tracker</title>
</head>
<body>
<header class="header">
<div class="container header-row">
<div class="logo">
<img src="./img/header/logo.svg" alt="logo" />
<a href="#!" class="logo-title">ТаскТрекер</a>
</div>
<nav class="nav">
<ul class="nav-list">
<li class="list-item"><a href="#!">Приложение</a></li>
<li class="list-item"><a href="#!">Возможности</a></li>
<li class="list-item"><a href="#!">Стоимость</a></li>
<li class="list-item"><a href="#!">Блог</a></li>
<li class="list-item"><a href="#!">Контакты</a></li>
</ul>
</nav>
<div class="install-list">
<div class="install-button">
<a href="#!" class="google-play-btn"
><img src="./img/header/GooglePlay.svg" alt=""
/></a>
</div>
<div class="install-button">
<a href="#!" class="app-store-btn"
><img src="./img/header/AppStore.svg" alt=""
/></a>
</div>
</div>
</div>
</header>
<main class="main">
<div class="container main-row">
<div class="main-content">
<h1 class="main-title">Приложение органайзер</h1>
<p>
Контролируй все свои дела и задачи. Не упускай ничего важного.
Заметки, даты и напоминания. Все в одном месте.
</p>
<div class="main-button">
<a href="#!" class="button">Начать пользоваться</a>
</div>
</div>
<div class="main-img">
<img src="./img/main/Mobile.png" alt="Mobile" />
</div>
</div>
</main>
<footer class="footer">
<div class="container footer-row">
<span class="footer-content">© 2021 ТаскТрекер. Все права защищены</span>
<div class="socials">
<a href="#!"><img src="./img/socials/Instagram.svg" alt="Instagram"></a>
<a href="#!"><img src="./img/socials/Dribbble.svg" alt="Dribbble"></a>
<a href="#!"><img src="./img/socials/Twitter.svg" alt="Twitter"></a>
<a href="#!"><img src="./img/socials/Youtube.svg" alt="Youtube"></a>
</div>
</div>
</footer>
</body>
</html>