Skip to content

Instantly share code, notes, and snippets.

@h4
Created February 7, 2012 12:30
Show Gist options
  • Save h4/1759472 to your computer and use it in GitHub Desktop.
Save h4/1759472 to your computer and use it in GitHub Desktop.
Отличия между html и xhtml
<H1>Корректная html-разметка</H1>
<ul class=menu>
<li>О компаниии
<li>Услуги
<li>Контакты
</ul> <p>
<img
src=logo.png
alt=Логотип>
<h1>Корректая xhtml-разметка</h1>
<ul class=”menu”>
<li>О компаниии</li>
<li>Услуги</li>
<li>Контакты</li>
</ul> <p>
<img
src=”logo.png”
alt=”Логотип” />
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment