Jump to content
  • 0

как правильно написать шапку сайта


SID
 Share

Question

Помогите правильно написать шапку сайта, столкнулся с проблемой что шапка идет в 2 строчки а не в одну.

вот текст

<html>
<body>
<style>
.heade
{
background-image:url(img/headcenter.jpg);
width:100%;

}
</style>
<p>Шапка)
<div class="heade">
<img alt="" src="img/headleft.gif">
<img alt="" src="img/headright.gif" style="float: right;">
</div>
</body>
</html>

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style>
* {border:0px}
.header
{
background-image:url(img/headcenter.jpg) left top no-repeat;
width:100%;
height:200px /* к примеру высота шапки */
}
</style>
</head>
<body>
<div class="header"><div><img alt="" src="img/headleft.gif" style="float:left"></div><div><img alt="" src="img/headright.gif" style="float: right"></div></div>
</body>
</html>

как то так

Edited by eVErl@Sting
Link to comment
Share on other sites

  • 0

Немного помогло, но не весь текст пока понятен, что значит:

* {border:0px}

зачем задавать длинну шапки строго?

вот еще вопрос хочу посередине какоенибудь лого вцепить но голова опять лезет в 2 строчки и лого не по центру.

Текст

<html>
<head>
<style>
.header
{
background-image:url(img/headbg.jpg);
width:100%;
}
</style>
</head>
<body>
<div class="header">
<div><img alt="" src="img/headleft.gif" style="float:left"></div>
<div><img alt="" src="img/headcentr.jpg" style="float:none"></div>
<div><img alt="" src="img/headright.gif" style="float: right;"></div>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0
Немного помогло, но не весь текст пока понятен, что значит:

* {border:0px}

Это сброс рамки для всех элементов на странице.

зачем задавать длинну шапки строго?

Не длину, а высоту, в данном варианте, это был всего лишь пример.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style>
* {border:0px}
.header {
background-image:url(img/headcenter.jpg) left top no-repeat;
width:100%;
height:200px /* к примеру высота шапки */ }
</style>
</head>
<body>
<div class="header" >
<div style="float: left"><img alt="" src="img/headleft.gif" style="float:left"></div>
<div style="float: right" ><img alt="" src="img/headright.gif" style="float: right"></div>
<div style="text-align: center" ><img alt="" src="img/headcentr.jpg" style="float:none"></div>
</div>
</body>
</html>

Edited by eVErl@Sting
Link to comment
Share on other sites

  • 0

Вопрос такого плана:

как вставить теперь эту голову в таблицу:

есть

<tr>

<td colspan="2">Шапка сайта</td>

</tr>

там где надпись шапка сайта , как сделать чтоб отображалась страница?

Edited by SID
Link to comment
Share on other sites

  • 0
Вопрос такого плана:

как вставить теперь эту голову в таблицу:

есть

<tr>

<td colspan="2">Шапка сайта</td>

</tr>

там где надпись шапка сайта , как сделать чтоб отображалась страница?

Информации идущяя на вывод в браузер находится между тегами <body>...</body>

Link to comment
Share on other sites

  • 0
так мне в таблицу надо

Так:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Заголовок страницы</title>
</head>
<body>
<table><tr>
<td colspan="2">Шапка сайта</td>
</tr></table>
</body></html>

Link to comment
Share on other sites

  • 0

Вы просто неправильно меня поняли. Я просто непреводил в пример весь текст таблицы, просто там где надпись Шапка сайта нужно вставить заранее созданный html файл, чтоб он отображался.

Link to comment
Share on other sites

  • 0
Вы просто неправильно меня поняли. Я просто непреводил в пример весь текст таблицы, просто там где надпись Шапка сайта нужно вставить заранее созданный html файл, чтоб он отображался.

Если вы хотите подгрузить файл к стринице то воспользуйтесь php (если он поддерживается вашим сервером)

Для этого используется функция include("путь до файла");

И код будет выглядеть так

<td colspan="2"><?php include("путь_до_файла"); ?></td>

Link to comment
Share on other sites

  • 0

вот так?

<tr>

<td colspan="2"><div class="header" >

<div style="float: left"><img alt="" src="img/headleft.gif" style="float:left"></div>

<div style="float: right" ><img alt="" src="img/headright.gif" style="float: right"></div>

<div style="text-align: center" ><img alt="" src="img/headcentr.jpg" style="float:none"></div>

</div>

</td>

</tr>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy