Created
February 7, 2012 11:19
-
-
Save h4/1759192 to your computer and use it in GitHub Desktop.
Стандартная разметка страницы
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title>Главная страница</title> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
</html> | |
<body> | |
<div class="page"> | |
<div class="header"> | |
<img src="logo.png" alt="Логотип" /> | |
</div> | |
<div class="menu"> | |
<ul> | |
<li><a href="/">Главная страница</a></li> | |
<li><a href="/contacts/">Контакты</a></li> | |
</ul> | |
</div> | |
<div class="sidebar"> | |
<!--Тут всякая дополнительная информация--> | |
</div> | |
<div class="content"> | |
<p>Текст о том, какая у нас замечательная компания</p> | |
<div class="news"> | |
<h2>Новости</h2> | |
<div class="news-item"> | |
<h3>Заголовок новости 1</h3> | |
<p>Текст новости</p> | |
</div> | |
<div class="news-item"> | |
<h3>Заголовок новости 2</h3> | |
<p>Текст новости</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Главная страница</title> | |
<meta charset="UTF-8"> | |
</html> | |
<body> | |
<div class="page"> | |
<header> | |
<img src="logo.png" alt="Логотип"> | |
</header> | |
<nav class="menu"> | |
<ul> | |
<li><a href="/">Главная страница</a></li> | |
<li><a href="/contacts/">Контакты</a></li> | |
</ul> | |
</nav> | |
<aside class="sidebar"> | |
<!--Тут всякая дополнительная информация--> | |
</aside> | |
<section class="content"> | |
<p>Текст о том, какая у нас замечательная компания</p> | |
<article class="news"> | |
<h2>Новости</h2> | |
<section class="news-item"> | |
<h3>Заголовок новости 1</h3> | |
<p>Текст новости</p> | |
</section> | |
<section class="news-item"> | |
<h3>Заголовок новости 2</h3> | |
<p>Текст новости</p> | |
</section> | |
</article> | |
</section> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
error in 6 line -
there is
(</html>)
must be
(</head>)