-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (132 loc) · 3.15 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<html>
<head>
<title>Reckue</title>
</head>
<body>
<div class="header">
<div class="wrapper">
<a href="#courses">Курсы</a>
<a href="#contacts">Контакты</a>
<a href="#about">О нас</a>
</div>
</div>
<div class="content">
<div class="wrapper">
<h1>Добро пожаловать в школу программирования<br> Reckue!</h1>
<a class="btn-order" href="#">Записаться</a>
</div>
</div>
<div class="footer">
<div class="wrapper">
<h1>RECKUE - ЭТО:</h1>
<h2>- Программа подготовки к собеседованию.</h2>
<h2>- Индивидуальный подход.</h2>
<h2>- Уроки через Skype, Zoom, Discord, Google Meet.</h2>
<h2>- Доступ к закрытой базе лекций.</h2>
<h2>- Работа с куратором.</h2>
<h2>- Практика и строчка в резюме.</h2>
<h2>- Интервь раз в неделю.</h2>
</div>
</div>
<div class="courses">
<div class="wrapper">
<h1>Наши курсы</h1>
</div>
</div>
</body>
<style>
* {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
h1 {
padding: 50px 0 20px 50px;
font-size: 48px;
color: #ffffff;
text-shadow: 1px 1px #808080;
}
h2 {
font-size: 32px;
color: #fff;
line-height: 45px;
}
.header {
width: 100%;
height: 60px;
background: rgb(255, 255, 255);
}
.header .wrapper {
margin: 0 auto;
text-align: right;
width: 1000px;
height: 60px;
}
.header .wrapper a {
font-size: 24px;
line-height: 60px;
padding: 10px 16px;
font-weight: 800;
text-decoration: none;
color: rgb(39 96 139);
}
.header .wrapper a:hover {
line-height: 50px;
text-decoration: none;
color: rgb(133 180 210);
}
.content {
display: table;
margin: 0 auto;
width: 100%;
min-height: 1000px;
background: url(./assets/header.jpg) no-repeat;
background-size: 100%;
}
.content .wrapper {
margin: 0 auto;
width: 1000px;
min-height: 1000px;
/* filter: blur(3px); */
}
.content h1 {
font-weight: 800;
font-size: 44px;
}
.content h2 {
font-size: 32px;
line-height: 50px;
}
.footer {
width: 100%;
min-height: 600px;
background: orange;
}
.footer .wrapper {
margin: 0 auto;
width: 1000px;
min-height: 600px;
}
.courses {
width: 100%;
min-height: 600px;
background: rgb(110 131 145);
}
.courses .wrapper {
margin: 0 auto;
width: 1000px;
min-height: 600px;
}
.btn-order {
border-radius: 20px;
background: #ffa500;
font-weight: 800;
padding: 20px 50px;
font-size: 20px;
color: #fff;
display: table;
margin: 200px 0 0 0;
text-decoration: none;
}
</style>
</html>