100 points 200 points 400 points 800 points800 points800 points800 points800 points 1600 points 3200...

Preview:

Citation preview

Know Your HTML100 points 100 points 100 points 100 points 100 points

200 points 200 points 200 points 200 points 200 points

400 points 400 points 400 points 400 points 400 points

800 points 800 points 800 points 800 points 800 points

1600 points 1600 points 1600 points 1600 points 1600 points

3200 points 3200 points 3200 points 3200 points 3200 points

<html></html>

Creates an HTML document

<head></head>

Sets off the title and other information that isn’t displayed on the Web page itself.

<body></body>

Set off the visible portion of the document.

<title></title>

Puts the name of the document in the title bar.

<frame noresize>

Prevents the user from resizing a frame.

<form></form>

Creates all forms.

<frameset></frameset>

Replaces the <body> tag in a frames document; can also be nested in other framesets.

<td></td>

Inserts data into table cell.

<tr></tr>

Inserts a table row.

<table></table>

Creates a table.

<img src=“name”>

Inserts an image.

<br></br>

Inserts a line break.

<dl></dl>

Creates a definition list.

<a href=“URL”></a>

Creates a hyperlink.

<b></b>

Creates bold text.

<ol> <li>First item</li> <li>Second item</li></ol>

Ordered list.

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

Tables

<ul> <li>Item</li> <li>Item</li></ul>

Unordered list.

<a href="http://www.example.com/"><img src="URL" alt="Alternate Text" /></a>

Image Link.

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

Text Elements.

<abbr title="HyperText Markup Language">HTML</abbr>

>

The HTML abbr tag is used for indicating an abbreviation.

<thead></thead>

The HTML <thead> tag is used for adding a header to a table.

<caption></caption>

The HTML caption tag is used for creating table captions.

<tfoot></tfoot>

The HTML <tfoot> tag is used for adding a footer to a table.

<del></del>

The HTML del tag is used for markup of deleted text.

<ins></ins>

The HTML ins tag is used for markup of inserted text.

<dfn></dfn>

The HTML dfn tag is used for indicating a definition. The

dfn tag surrounds the word/term being defined.

<table border="1"> <colgroup span="3"> <col width="50"></col><col width="100"></col> <col width="20"></col>

</colgroup> <tr> <td>col 1</td> <td>col 2</td> <td>col 2</td> </tr> </table>

The HTML col tag is used for specifying column properties for each column within a

colgroup.

<h1></h1>

The HTML <h1> tag is used for specifying level 1 headings. There are 6 levels of headings (h1 - h6) with h1 the most important and h6 the least important.

<address></address>

The HTML address tag is used for indicating an address, usually related to authorship of the current document.

Recommended