Difference between revisions of "HTML"
From Hawk Wiki
(Created page with "==HTML Basics== ===XHTML tags=== All tags must be closed<br> Wrong: <pre class="brush:html"> <input type="text"> <br> </pre> Correct: <pre class="brush:html"> <input type="text"...") |
(No difference)
|
Latest revision as of 23:47, 17 March 2015
HTML Basics
XHTML tags
All tags must be closed
Wrong:
<input type="text"> <br>
Correct:
<input type="text" /> <br />