Код с 28 урока css у меня не работает,посмотрите в чем ошибка?

0
<!doctype html>
 <html lang ="ru">
  <head>
   <meta charset ="UTF-8">
     <title>MAJ</title>
     <link rel="stylesheet" type="text/css" href="acsses/css/style.css">
  </head>
<body>
      <div class="main">
      	<div class="header">
      		<div class="Logo">
      			<div class="Logo_text"></div>
      			<h1><a href="">MAJ</a></h1>
      			<h2>это самый быстрый мессенджер</h2>
      		</div>
      	</div>
      </div>
</body>
</html>

css

.header {
 	background-color: darkslateblue; /*Это коллор обекта*/ 
 	height: 177px; /*отступ с верху*/
 	font-size: 0.8em; /*шрифт*/
 	margin-left: 0px;/*отсптур с права*/
 	margin-right: 0px;/*отструп с лева*/
    min-width: 900px;
 }

 .main, .Logo, .menubar, .site_content, .footer {
   margin-left: auto;
   margin-right: auto;	
 }

 .Logo {
 	width: 880px;
 	padding-bottom: 40px;
 }

 .Logo h1, .logo h2 {
 	font: normal 300% 'century gothic' , arial, sans-serif;
 	margin: 0 0 0 9px;
 }

 .Logo_text h1, .Logo_text h1 a, .Logo_text h1 a:hover{
 	padding: 22px 0 0 0;
 	color: #fff;
 	letter-spacing: 0.1em;
 	text-decoration: none;
 }

 .Logo_text h2 {
 	font-size: 0.9em;
 	padding: 4px 0 0 0;
 	color: #999;
 }
html
css

1 ответов

0

У вас лишние пробелы здесь:

 <html lang ="ru">

и здесь:

 <meta charset ="UTF-8">

Плюс у вас пустой див:

<div class="Logo_text"></div>

в этот див нужно вкладывать то, что вы написали ниже после него:

<h1><a href="">MAJ</a></h1>
<h2>это самый быстрый мессенджер</h2>

p.s. Названия классов с большой буквы - это плохо, должны быть с маленькой буквы.

Sign up or Log in to write an answer