Created
February 7, 2012 12:30
-
-
Save h4/1759472 to your computer and use it in GitHub Desktop.
Отличия между html и xhtml
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
<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