MELJUN CORTES HTML

Post on 17-May-2015

342 views 0 download

description

MELJUN CORTES HTML

transcript

HTML

MELJUN CORTESMELJUN CORTES

GUIDELINES

Not case sensitiveExtension name “.html”Can be written in ANY text editor

PARAGRAPH TAG

<HTML><BODY>

<P>MY FIRST PARAGRAPH.</P>

</BODY></HTML>

BODY TAG ATTRIBUTE

background Use styles instead. Specifies a background image for a document

bgcolor Use styles instead. Specifies the background color of a document

PREFORMATTED TAG

<html><body>

<pre>My first paragraph.</pre>

</body></html>

HEADING TAGS

<h1>This is a heading</h1>

<h2>This is a heading</h2>

<h3>This is a heading</h3>

<h4>This is a heading</h4>

<h5>This is a heading</h5>

<h6>This is a heading</h6>

SPECIAL CHARACTERS

CONTINUE…

CONTINUE…

FORMATTING TAGS

<html><body>

<p><b>This text is bold</b></p><p><strong>This text is strong</strong></p><p><big>This text is big</big></p><p><i>This text is italic</i></p><p><em>This text is emphasized</em></p><p>This is<sub> subscript</sub> and <sup>superscript</sup></p>

</body></html>

CONTINUE…

<b></b>Defines bold text<big></big>Defines big text<u></u> Defines underline text<em></em>Defines emphasized text <i></i>Defines italic text<u></u>Defines underline text<strike></strike>Defines a line in the middle of the text<small></small>Defines small text<strong></strong>Defines strong text<sub></sub>Defines subscripted text<sup></sub>Defines superscripted

FONT TAG

<HTML><BODY>

<FONT>MY FIRST PARAGRAPH.</FONT>

</BODY></HTML>

FONT TAG ATTRIBUTES

Size Specifies the font size. Color Specifies the font color. Face Specifies the font face.

IMAGE TAG

<html>

<body>

<img src=“filename.extension”>

</body>

</html>

ATTRIBUTES

MARQUEE TAG

<HTML><BODY>

<MARQUEE>MY FIRST PARAGRAPH.

</MARQUEE>

</BODY></HTML>

ATTRIBUTES

To be continued…