HTML
fleurchild.com > Resources > Tutorials > HTML
HTML stands for HyperText Markup Language which is a language that uses a set of "codes" to display how text should appear on a webpage.
Text Decoration
Text decoration helps organize and highlight the main points of a website's text content.
Here's what text looks like bold!
<strong>YOUR TEXT HERE</strong>
Here you have regular text, and here your text is underlined.
<u>TEXT HERE</u>
Ever wondered how to italicize your text?
<em>TEXT HERE</em>
I am not a spaz, I repeat I am not a spaz!
<strike>TEXT HERE</strike>
<marquee>TEXT HERE</marquee>
Links
Links take vistors from one webpage to another by including the page's web address in the code.
Click here!
<a href="LINK HERE">LINK NAME</a>
<a href="LINK HERE"><img src="IMAGE LINK" alt="TAG OR NAME" /></a>
Images
Images are represented through the following code where the image link and a tag of the image name are included.
<img src="IMAGE LINK" alt="TAG OR NAME" />
Tables
The proper use of a table is to organize text and image. Calendars generated through the computer are composed of tables.
Tables are composed of cells that can either be:
<tr>
<td>
| This | is | a |
| three | by | three |
| super | awesome | table |
<table><tr><td>This</td><td>is</td><td>a</td></tr><tr><td>three</td><td>by</td><td>three</td></tr><tr><td>super</td><td>awesome</td><td>table</td></tr></table>
to fleurchild.com, Julia's little corner of the webernet. Be sure to check out the many high-quality resources the site has made availible for you. If you have a request of any kind, don't be afraid to from me a message in the blog. Back to the Top.
