Как сделать контакты с права, а логотип слева?

1

Подскажите пожалуйста как сделать контакты с права а логотип с лева на уровне с меню

HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="description" content="Киномонстр - это портал о кино" />
<meta name="keywords" content="фильмы, фильмы онлайн, hd" />
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body background="assets/img/fon.jpg">

<div class="header">

<div class="menubar">
<ul>
<li><a href="#">ОБО МНЕ</a></li>
<li><a href="#">АССОРТИМЕНТ</a>
<ul>
<li><a href=#>Торты</a></li>
<li><a href=#>Пироженные</a></li>
<li><a href=#>Капкеки</a></li>
</ul>
</li>
<li><a href="#">НАЧИНКИ</a></li>
<li><a href="#">КАК ОФОРМИТЬ ЗАКАЗ</a></li>
<li><a href="#">ДОСТАВКА/ОПЛАТА</a></li>
<li><a href="#">КОНТАКТЫ</a></li>

</ul>
</div>


<div class="phones">
<p>
<a href="tel:+79312624442">+79312624442</a>
</p>

<p>
<a href="tel:+79269679619">(926) 967-9619</a>
<img src="/public/images/viber3.jpg" alt="viber-whatsapp">

</p>

</div>



</div>

<footer>
<div class="container">
<p class="text-center"> <a href="https://fructcode.com">FRUCTCODE.COM</a> </p>
</div>
</footer>

CSS

* {
margin: 0;
padding: 0;
}

.header {
background-color: #9a928da6;
height: 80px;
font-size: 0.8em;
margin-left: 0px;
margin-right: 0px;
min-width: 1000px;
margin-top: 0px;
background-size: 100%
}

.phones {
background: url(../images/phone-icn.png) no-repeat 0 14px;
color: #211b14;
font-family: "Marmelad Regular";
font-size: 18px;
line-height: 24px;
padding-left: 35px;
display: inline-block;
zoom: 1;
vertical-align: top;
margin-top: 1px;
margin-left: 50px;
}

.cont {
text-align: right;
margin-right: 100px;
}

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



.menubar {
width: 900px;
height: 46px;
}

.menubar ul {
font: 14px;
}

.menubar li {
float: left;
padding: 0 0 0 9px;
list-style: none;
margin: 1px 2px 0 0;

}

.menubar li a {
font: normal 100% 'trebuchet ms', sans-serif;
display: block;
height: 0px;
padding: inherit;
color: #fff;
text-decoration: none;
font-size: 16px;
font-weight: 500;
font-family: "Marmelad Regular";
margin-top: 30px;
}

ul li.selected a {
color: #aeb002;
}

.menubar ul li a:hover {
color: #e4ec04;
}
.menubar ul ul {
display: none;
}
.menubar ul li:hover > ul {
display: block;
}

.menubar ul ul li {
min-width: 100px;
float:none;
display:list-item;
position: relative;
text-align: center;
margin: 20px;
margin-left: 5px;
margin-top: 50px;

}


footer {
position: absolute;
bottom: 0;
width: 100%;
height: 120px; /* Высота блока footer */
background: rgba(14,14,14,0.95); 
text-align: center; 
}

footer a {
color: #999;
}

footer a:hover {
color: #efefef;





html
css

1 ответов

1

У вас кода в html не хватает, как минимум body не закрыт

Sign up or Log in to write an answer