Skip to content

Instantly share code, notes, and snippets.

@h4
Created February 7, 2012 11:19
Show Gist options
  • Save h4/1759192 to your computer and use it in GitHub Desktop.
Save h4/1759192 to your computer and use it in GitHub Desktop.
Стандартная разметка страницы
<!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>
<!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>
@Vania-woolf
Copy link

Vania-woolf commented Nov 21, 2016

error in 6 line -
there is (</html>)
must be (</head>)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment