mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
18 lines
815 B
XML
18 lines
815 B
XML
<slide title="HTML Optimization">
|
|
<list>
|
|
<bullet>Only close tags that _be_ closed. Tags such as the <code><![CDATA[<li>]]></code>,
|
|
<code><![CDATA[<p>]]></code> and even <code><![CDATA[<td>]]></code> and
|
|
<code><![CDATA[<tr>]]></code> tags need not be closed. </bullet>
|
|
<bullet>Remove All Comments!</bullet>
|
|
<bullet>Meta tags don't work!</bullet>
|
|
<bullet>Use parent html tags to specify child values, when all children have the same value</bullet>
|
|
<bullet>Fully qualify links (ie, personal/images/ not personal/images)</bullet>
|
|
<bullet>Only quote attributes that don't have spaces...</bullet>
|
|
</list>
|
|
<example fontsize="1.2em"><![CDATA[<a href=data.html>Some Data</a>
|
|
<div align=center></div>
|
|
<a href=title.html ><img src=title.jpg alt="Title Page"></a>
|
|
]]></example>
|
|
|
|
</slide>
|