Здравствуйте! я новый пользователь и у меня возникла проблема, все стало как-то не так?

6 ответов

0

Вот, что я вижу:

<div class="main">
</div>

1. main - див открывается и сразу закрывается. В него должны входить все остальные блоки.

2. Перед <div class="site_content"> лишний </div>

3. <<p>Мы запустили новый проект по продаже аккаунтов!</p> - в начале лишний символ "<"

4. В конце должны закрываться дивы от site_content, sidebar_container, main и последнего sidebar.

5. Блок menubar должен входить в блок header

Стили:

input [type="text"], input [type="password"],input [type="search"] {

1. Нужно убрать все пробелы после input и поставить точки с запятыми после всех свойств:

color:#5d5d5d
width:60%
padding: 8px

2. У стиля .sidebar не хватает закрывающей скобки "}"

В итоге должен такой код получиться (без ошибок из списка выше):

HTML

<div class="main">

    <div class="header">
        <div class="logo">
            <div class="logo_text">
                <h1><a href="/">КиноМонстр</a></h1>
                <h2>Кино - наша страсть!</h2>
            </div>
        </div>

        <div class="menubar">

            <ul class="menu">
                <li class="selected"><a href="#">Главная</a></li>
                <li><a href="#">Фильмы</a></li>
                <li><a href="#">Сериалы</a></li>
                <li><a href="#">Рейтинг фильмов</a></li>
                <li><a href="#">Контакты</a></li>
            </ul>

        </div>

    </div>

    <div class="site_content">

        <div class="sidebar_container">

            <div class="sidebar">

                <h2>Поиск</h2>
                <form method="post" action="#" id="search_form">
                    <input type="search" name="search_field" placeholder="ваш запрос" />
                    <input type="submit" class="bth" value="найти" />
                </form>
            </div>
            <div class="sidebar">
                <h2>Вход</h2>
                <form method="post" action="#" id="login">

                    <input type="text" name="login_field" placeholder="логин" />
                    <input type="password" name="password_field" placeholder="Пароль" />
                    <input type="submit" class="btn" value="вход" />
                    <div class="lables_passreg_text">
                        <span><a href="#">забыли пароль?</a></span> <span><a href="#">регистрация</a></span>
                    </div>

                </form>
            </div>

            <div class="sidebar">
                <h2>Новости</h2>
                <span>28.02.2020</span>
                <p>Мы запустили расширенный поиск</p>
                <a href="#">читать</a>
            </div>

            <div class="sidebar">
                <h2>Рейтинг фильмов</h2>
                <ul>
                    <li><a href="#">Интерстеллер</a><span class="rating_sidebar"> 8.1</span></li>
                    <li><a href="#">Матрица</a><span class="rating_sidebar"> 8.0</span></li>
                    <li><a href="#">Безумный Макс</a><span class="rating_sidebar"> 7.5</span></li>
                    <li><a href="#">Облачный атлас</a><span class="rating_sidebar"> 7.4</span></li>
                </ul>
            </div>

        </div>
    </div>
    <div class="footer">
        <p>
            <a href="#">Главная</a> |
            <a href="#">Фильмы</a> |
            <a href="#">Сериалы</a> |
            <a href="#">Рейтинг фильмов</a> |
            <a href="#">Контакты</a> |
        </p>
        <p>wh-db.com2015</p>

    </div>
</div>

CSS

* {
     margin: 0;
     padding: 0;
}
input[type="text"], input[type="password"], input[type="search"] {
     color: #5d5d5d;
  	 width: 60%; 
     padding: 8px; 
}
input, textarea {
     outline: none;
     border: none;
     border: solid 1px #f2f2f2;
}
h1, h2 {
     font: normal 170% "century gothic", arial;
     margin: 0 0 15px 0;
     padding: 15px 0 5px 0;
     color: #000;
}
h2 {
     font-size: 140%;
}
.header {
     background-color: red;
     height: 200px;
     font-size: 0.9em;
     margin-left: 0px;
     margin-right: 0px;
     min-width: 900px;
}
.main, .logo, .menubar, .site_content, .footer {
     margin-left: auto;
     margin-right: auto;
}
.logo {
     width: 1000px;
     padding-bottom: 40px;
}
.logo h1, .logo h2 {
     font: normal 300% 'century gothic', arial, sans-serif;
     margi: 0 0 0 9px;
}
.logo_text h1 a, .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: 2em;
     padding: 20px 0 0 0;
     color:#fff;
}
.menubar {
     width: ;
     height: 0px;
}
ul.menu {
     float: left;
}
ul.menu li {
     float: left;
     padding: 0 0 0 9px;
     list-style: none;
     margin: -30px 10px 0 0;
}
ul.menu li a {
     font: normal 100% "trebuchet ms", sans-serif;
     display: block;
     height: 20px;
     padding: 6px 35px 5px 28px;
     color: #fff;
     text-decoration: none;
}
ul.menu li.selected a {
     color: #aeb002;
}
ul.menu li a:hover {
     color: #e4ec04;
}
.site_content {
     width: 880px;
     overflow: hidden;
     margin: 20px auto 0 auto;
     background-color: white;
}
.sidebar_container {
     float: right;
     width: 224px;
}
.sidebar {
     float: right;
     width: 222px;
     padding: 5%;
     margin: 0 0 10px 0;
     border: solid 5px #FF0000;
     margin: 0 0 10px 0;
     border-radius: 10px;
     background-color:#f2f2f2;
}  
.sidebar h2 {
     color:#FF0000;
}
.lables_passreg_text {
  	font-size: 0.7em;
  	margin-top: 3%;
 	margin-left: 2%;
}
.logo_text h1, .logo_text h1 a, .logo_text h1 a:hover {
   padding: 22px 0 0 0;
   color: #ffffff;
   letter-spacing: 0.1em;
   text-decoration: none;
}

Может еще где-то есть ошибки, дальше не стал смотреть.

0

Скопируйте код и покажите. То что вы показываете - это локальный файл, я не могу его открывать.

0
* {
margin: 0;
padding: 0;
}
input [type="text"], input [type="password"],input [type="search"] {
color:#5d5d5d
width:60%
padding: 8px
}
input, textarea {
outline: none;
border: none;
border: solid 1px #f2f2f2;
}
h1, h2 {
font: normal 170% "century gothic", arial;
margin: 0 0 15px 0;
padding: 15px 0 5px 0;
color: #000;
}

h2 {
font-size: 140%;
}

.header {
background-color: red;
height: 200px;
font-size: 0.9em;
margin-left: 0px;
margin-right: 0px;
min-width: 900px;
}

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

.logo {
width: 1000px;
padding-bottom: 40px;
}

.logo h1, .logo h2 {
font: normal 300% 'century gothic', arial, sans-serif;
margi: 0 0 0 9px;
}
.logo_text h1 a, .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: 2em;
padding: 20px 0 0 0;
color:#fff;
}
.menubar {
width: ;
height: 0px;
}
ul.menu {
float: left;
}
ul.menu li {
float: left;
padding: 0 0 0 9px;
list-style: none;
margin: -30px 10px 0 0;

}

ul.menu li a {
font: normal 100% "trebuchet ms", sans-serif;
display: block;
height: 20px;
padding: 6px 35px 5px 28px;
color: #fff;
text-decoration: none;
}
ul.menu li.selected a {
color: #aeb002;
}

ul.menu li a:hover {
color: #e4ec04;
}
.site_content {
width: 880px;
overflow: hidden;
margin: 20px auto 0 auto;
background-color: white;
}
.sidebar_container {
float: right;
width: 224px;
}

.sidebar {
float: right;
width: 222px;
padding: 5%;
margin: 0 0 10px 0;
border: solid 5px #FF0000;
margin: 0 0 10px 0;
border-radius: 10px;
background-color:#f2f2f2;

.sidebar h2 {
color:#FF0000;
}

.lables_passreg_text {
font-size: 0.7em;
margin-top: 3%;
margin-left: 2%;
}
.logo_text h1, .logo_text h1 a, .logo_text h1 a:hover {
padding: 22px 0 0 0;
color: #ffffff;
letter-spacing: 0.1em;
text-decoration: none;
}
0
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="description" content='fortneshop- это продажа аккаунтов по дешевке' />
<meta name="keywords" content="аккаунты, дешевые аккаунты" />
<link rel="stylesheet" href="assets/css/style.css">
</head>
<div>
<div>

<div class="main">
</div>
<div class="header">
<div class="logo">
<div class="logo_text">
<h1><a href="/">Fortnеshop</a></h1>
<h2>Fortnite-наша жизнь! </h2>
</div>
</div>
</div>
<div class="menubar">

<ul class="menu">
<li><a href="#">Главная</a></li>
<li><a href="#">Все аккаунты</a></li>
<li><a href="#">Топ продаж</a></li>
<li><a href="#">Дешевые аккаунты</a></li>
<li><a href="#">Тех.Поддержка</a></li>
<li><a href="#">Контакты</a></li>

</ul>
</div>
</div>


<div class="site_content">

<div class="sidebar_container">

<div class="sidebar">

<h2>Поиск</h2>

<form method="post" action="#" id="search_form">
<input type="search" name="search_filed" placeholder="ваш запрос" />

<input type="button" class="btn" value="найти" />
</form>

</div>

<div class="sidebar"></div>
<h2> Вход </h2>
<form method="post" action="#" id="login">

<input type="text" name="login_filed" placeholder="логин"/>
<input type="password" name="password_filed" placeholder="пароль" />
<input type="button" class="btn" value="Войти" />
<div class="lables_passreg_text">
<span><a href="#">Забыли пароль?</a></span> | <span><a href="#">Регистрация</a></span>
</div>
</form>
</div>
<div class="sidebar"></div>
<h2>Новости</h2>
<span>31.02.2020</span>
<<p>Мы запустили новый проект по продаже аккаунтов!</p>
<a href="#">читать</a>

</div>

</body>
</html>
0

у меня на сайте все в разброс, все строчки по всему сайту

0

Спасибо, помог, но теперь другая проблема, у меня рамки находятся в другом месте где находится текст т.е текст не внутри рамки 

Sign up or Log in to write an answer