[Link].
com
Sample Codes
HTML overall
When you create a new HTML document, you can automatically start with the following structure:
<html>
<head>
<title>
Write here the title of the page.
It will appear in the blue line at the top of the browser window.
</title>
</head>
<body>
Here comes the body of the page.
See the other categories for details.
</body>
</html>
Text effects
<br>
New line
<p>
Paragraph
</p>
<div style="align:left/center/right;color:text color;">
Write here text in style.
For more information, search "Cascading style sheets" or "CSS".
</div>
<bdo dir="ltr/rtl;">
Write here text.
Directions:
ltr - Left to Right.
rtl - Right to Left.
</bdo>
Links
Link to another page:
<a href="[Link]
Link text goes here.
</a>
Open in new window:
<a href="[Link] target="_blank">
Link text goes here.
</a>
Email link:
<a href="[Link]
Link text goes here.
</a>
Images
<img src="[Link] url" alt="alternative text" align="right/center/left">
Tables
<table>
<tr> (table row)
<td> (table cell)
Cell content goes here.
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
</tr>
</table>