HTML
From Hawk Wiki
Revision as of 23:47, 17 March 2015 by Danielle (Talk | contribs) (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"...")
HTML Basics
XHTML tags
All tags must be closed
Wrong:
<input type="text"> <br>
Correct:
<input type="text" /> <br />