Quick List

<html> <head> <title>Document name goes here</title> </head> <body> Visible text goes here </body> </html>

Heading Elements <h1>Largest Heading</h1> <h2> . . . </h2> <h3> . . . </h3> <h4> . . . </h4> <h5> . . . </h5> <h6>Smallest Heading</h6>

Text Elements <p>This is a paragraph</p> <br> (line break) <hr> (horizontal rule) <pre>This text is preformatted</pre>

Links, Anchors, and Image Elements  <html> <head> <title>Document name goes here</title> </head> <body> Visible text goes here </body> </html>

Heading Elements <h1>Largest Heading</h1> <h2> . . . </h2> <h3> . . . </h3> <h4> . . . </h4> <h5> . . . </h5> <h6>Smallest Heading</h6>

Text Elements <p>This is a paragraph</p> <br> (line break) <hr> (horizontal rule) <pre>This text is preformatted</pre>

Links, Anchors, and Image Elements  <BODY>   <a href="http://www.comutereducationworld.com/">This is a Link</a> <a href="http://www.comutereducationworld.com/">

<img src="URL" mce_src="URL"></a> <a href="mailto:webwalas.com">   Send e-mail</a>

A named anchor: <a name="tips">Useful Tips Section</a> <a href="#tips" mce_href="#tips">Jump to the Useful Tips Section</a>

Tables <table border="1"> <tr> <th>someheader</th> <th>someheader</th> </tr> <tr> <td>sometext</td> <td>sometext</td> </tr> </table>

Unordered list <ul> <li>First item</li> <li>Next item</li> </ul>

Ordered list <ol> <li>First item</li> <li>Next item</li> </ol>  

Post Comment
Login to post comments