Правильно ли сверстал?Захожу в инспектор в браузере,в все блоки подсвечиваются как надо,но секция "about"не подсвечивается,хотя должен.
HTML5 |
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
135
136
137
138
139
140
141
142
143
| <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Саит</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container 1 clearfix">
<img src="img/logo.png" alt="Myname" class="logo">
<div class="title">
<h1>
Я ЗАНИМАЮСЬ ВЕРСТКОЙ И ДЕЛАЮ ЭТО ПРОФЕССИОНАЛЬНО
</h1>
<button>
СВЯЗАТЬСЯ СО МНОЙ
</button>
<div>
<img src="img/arrow.png" alt="arrow" class="arrow">
</div>
</div>
</div>
</header>
<section class="about">
<div class="container">
<div class="about">
<div class="about__title">
<h2>ОБО МНЕ</h2>
</div>
<div class="mission">
<div class="mission__title">
<h3>
О МИССИИ
</h3>
<hr>
</div>
<div class="mission__paragraph"><p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<br><br><br>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem.</p>
</div>
</div>
<div class="merits">
<div class="merits__title">
<h3>О ЗАСЛУГАХ</h3>
<hr>
</div>
<ul class="merits__list">
<li class="merits__item bug">
<div class="merits__heading">
Волшебный жук
</div>
<div class="merits__intro">
Позволяет быть в тонусе
</div>
</li>
<li class="merits__item bell">
<div class="merits__heading">
Особый колокольчик
</div>
<div class="merits__intro">
Посволяет не проспать
</div>
</li>
<li class="merits__item storm">
<div class="merits__heading">
Человек молния
</div>
<div class="merits__intro">
Я сдаю все проеты раньше
</div>
</li>
<li class="merits__item camera">
<div class="merits__heading">
Фотографируем
</div>
<div class="merits__intro">
Просто мне это нравиться
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="reasons">
<div class="container">
<div class="reason">
<div class="reason__title">
<h2>
ПОЧЕМУ КО МНЕ ОБРАЩАЮТСЯ
</h2>
</div>
<div class="reason__item">
<div class="items__item">
<div class="items__digit">1</div>
<div class="items__title">Умный и разумный</div>
</div>
<div class="items__item">
<div class="items__digit">2</div>
<div class="items__title">Красивый и приятный</div>
</div>
<div class="items__item">
<div class="items__digit">3</div>
<div class="items__title">Мой код любят девушки</div>
</div>
</div>
<div class="seems">
<div class="seems__title">
<h3>
МНЕ КАЖЕТСЯ
</h3>
</div>
<div class="seems__paragraph">
<p>Вам просто необходимо связаться со мной, иначе вы</p><P>рискуете упустить знакомство с лучшим человеком на земле
</P>
</div>
<div class="seems__button">
<button>СВЯЗАТЬСЯ СО МНОЙ</button>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer">
<div class="footer__information">
<p>2016 / Все права защищены</p>
</div>
<div class="footer__information">
<p>Мое имя и фамилия</p>
</div>
<div class="footer__information">
<p>Политика конфиденциальности</p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html> |
|
CSS |
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
| body{
padding: 0px;
margin: 0px;
}
* {
padding: 0px;
margin: 0px;
}
.clearfix:after {
content: "";
display: table;
width: 100%;
clear: both;
}
header{
background:#4e8598;
text-align: center;
}
.container{
width:936px;
margin:0 auto;
}
.logo{
margin-top:54px;
}
h1{
font-size: 29px;
color:#fff;
margin-top:178px;
margin-bottom: 0px;
line-height:1.5;
font-family: tahoma;
}
button{
font-size:13px;
background:#4e8598;
border-radius:30px;
height: 54px;
width: 217px;
color:#fff;
letter-spacing: 0.04em;
border:solid #fff;
border-width:1px;
margin-top:25px;
}
.arrow{
margin-top: 179px;
}
.about{
margin-top:70px;
}
.about__title{
color:#2f383b;
font-size:26px;
text-align: center;
font-family: tahoma;
}
.mission{
width:394px;
display: inline-block;
margin-top: 70px;
float:left;
}
.mission__title{
font-size:22px;
margin:0px;
float:left;
font-family: tahoma;
}
hr{
border: none;
background:#4e8598;
height: 3px;
width:72px;
margin-top:13px
}
.mission__paragraph{
margin-top:28px;
font-size:15px
width:394px;
display: inline-block;
letter-spacing: 0.03em;
}
.merits{
width:410px;
margin-left:101px;
margin-top: 70px;
float: left;
}
.merits__title{
font-size:22px;
margin:0px;
font-family: tahoma;
}
hr{
border: none;
background:#4e8598;
height: 3px;
width:72px;
margin-top:13px
}
.merits__item{
display:block;
margin-top:15px;
padding:10px 0px 10px 62px;
letter-spacing: 0.03em;
}
.merits__heading{
display:inline;
font-size: 16px;
color:#6d98a8;
margin-right:26px;
}
.merits__intro{
display:inline;
font-size:15px;
color:#b4b6b6;
}
.bug{
background:url(../img/bug.png)no-repeat left center;
margin-top:18px;
}
.bell{
background:url(../img/bell.png)no-repeat left center;
}
.storm{
background:url(../img/storm.png)no-repeat left center;
}
.camera{
background:url(../img/camera.png)no-repeat left center;
}
.reason__title{
text-align:center;
margin-top:500px;
margin-bottom:66px;
font-size:26px;
font-weight:bold;
}
.items__item{
display:inline-block;
width:170px;
margin-right:145px;
text-align: center;
}
.items__digit{
width:73px;
height:73px;
border-radius:50px;
border: 1px solid #333c3f;
line-height:73px;
font-size:30px;
margin: 0 auto;
}
.items__title{
font-size: 16px;
margin-top:15px;
}
.items__item:nth-child(1){
display:inline-block;
width:170px;
margin-left:60px;
}
.items__item:nth-child(3){
display:inline-block;
width:170px;
margin-right:50px;
}
.seems{
text-align:center;
}
.seems__title{
margin-top:56px;
font-size:22px;
margin-bottom:20px;
}
.seems__paragraph p{
font-size:14px;
width: 400px;
font-family: tahoma;
line-height:24px;
margin:0 auto;
}
.seems{
background:#fff;
}
.seems__button button{
font-size:13px;
background:#2f383b;
border-radius:30px;
height: 54px;
width: 217px;
color:#fff;
letter-spacing: 0.04em;
border:1px solid #fff;
margin-top:25px;
}
.seems__button button:hover{
font-size:13px;
background:#fff;
border-radius:30px;
height: 54px;
width: 217px;
color:#2f383b;
letter-spacing: 0.04em;
border:1px solid #2f383b;
margin-top:25px;
}
footer{
background:#2f383b;
margin-top:75px;
}
.footer__information{
display: inline-block;
margin:45px 0px;
margin-right:236px;
font-size:13px;
font-family: tahoma;
}
.footer__information:nth-child(2){
display: inline-block;
margin:45px 0px;
margin-right:195px;
}
.footer__information:nth-child(3){
display: inline-block;
margin:45px 0px;
} |
|