-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (89 loc) · 4.23 KB
/
Copy pathindex.html
File metadata and controls
92 lines (89 loc) · 4.23 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Open+Sans&family=Ubuntu:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/animate.min.css" />
<title>Document</title>
</head>
<body>
<header class="header">
<div class="container">
<img src="img/logo.png" alt="wayup" class="logo animate__animated animate__fadeInDown">
<div class="wrapper ">
<div class="offer animate__animated animate__fadeInLeft">
<h1 class="offer__title">
С помощью верстки
я создам ту жизнь, о которой<br>
<span class="offer__title_span">мечтаю!</span>
</h1>
<!-- /.offer__title -->
<p class="offer__text">
Мои стремления + настойчивость позволят мне
достичь чего угодно. Я не верю в это. Я знаю это
на 100%. Меня не остановить!
</p>
<!-- /.offer__text -->
<a href="#learn" class="offer__button button" id="btn">Двигайся к мечте!</a>
<!-- /.offer__button -->
</div>
<!-- /.offer -->
<img src="img/photo.png" alt="desktop" class="desktop animate__animated animate__fadeInRight">
</div>
<!-- /.wrapper -->
</div>
</header>
<!-- /.header -->
<section class="learn" id="learn">
<div class="container">
<h2 class=" animate__animated learn__title">Что меня ждет впереди</h2>
<!-- /.learn__title title -->
<div class="future">
<div class="future__item">
<img src="img/icon1.png" alt="">
<h3>Свободное время</h3>
<p>Мне нужно свободное время на семью и самое настоящее</p>
</div>
<div class="future__item">
<img src="img/icon2.png" alt="">
<h3>Яркие путешествия</h3>
<p>Работать откуда угодно - что может быть лучше?</p>
</div>
<div class="future__item">
<img src="img/icon3.png" alt="">
<h3>Создание ценности</h3>
<p>Нет ничего сильнее, чем эить не просто так, создавая ценность </p>
</div>
</div>
</div>
</section>
<!-- /.learn -->
<section class="mail">
<div class="container">
<h2 class="mail__title">Форма заказа билета в будущее</h2>
<form action="" class="form">
<input type="text" placeholder="Имя" required>
<input type="email" placeholder="E-mail" required>
<input type="tel" placeholder="Телефон" required>
<input type="text" placeholder="Куда я полечу в ближайшее время?" required>
<button class="form__button" type="submit">Двигаться к мечте!</button>
</form>
</div>
</section>
<!-- /.mail -->
<footer class="footer">
<div class="container">
<p class="footer__text">Все мои мечты защищены моим трудолюбием</p>
</div>
</footer>
<!-- /.footer -->
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>