Paragraph, text break and formatting text in MS Frontpage 2003

15

description

 

Transcript of Paragraph, text break and formatting text in MS Frontpage 2003

Page 1: Paragraph, text break and formatting text in MS Frontpage 2003
Page 2: Paragraph, text break and formatting text in MS Frontpage 2003
Page 3: Paragraph, text break and formatting text in MS Frontpage 2003
Page 4: Paragraph, text break and formatting text in MS Frontpage 2003

An attribute refers to the quality or the characteristics of an HTML tag.

Page 5: Paragraph, text break and formatting text in MS Frontpage 2003
Page 6: Paragraph, text break and formatting text in MS Frontpage 2003

A syntax refers to the structure or the arrangement of the tag accordingly.

Page 7: Paragraph, text break and formatting text in MS Frontpage 2003
Page 8: Paragraph, text break and formatting text in MS Frontpage 2003

Paragraph Tags:

<p> and </p> Used before and after every paragraph.

The tags create a space between paragraph.

<dd> The <dd> tag must be placed at the

beginning of the paragraph to indent the first line.

It has no end tag.

Page 9: Paragraph, text break and formatting text in MS Frontpage 2003

Paragraph Tags:

To indent the paragraph on both sides (the left and right margins), the <blockquote> and </blockquote> tags must be placed before the first word and after the last word of the paragraph, respectively.

Page 10: Paragraph, text break and formatting text in MS Frontpage 2003

Text Break Tag

<br> No closing tag is necessary in

making text breaks. It indicates the end of a line of text. This means that the text after the <br> tag will appear on the next line.

This tag work as an Enter key.

Page 11: Paragraph, text break and formatting text in MS Frontpage 2003

Formatting Tag:

FONT STYLE

HTML Tag EXAMPLE OUTPUT

Bold <b></b>

<b>Student</b>

Student

Underline <u></u>

<u>Student</u>

Student

Italic <i></i>

<i>Student</i>

Student

To Apply Font Style:

Page 12: Paragraph, text break and formatting text in MS Frontpage 2003

Formatting Tag:To Apply Font Effects:

Page 13: Paragraph, text break and formatting text in MS Frontpage 2003

Formatting Tag:To Apply a font, font color, and font size

<font></font> The text you want to apply

a certain font should be place between these tags.

Page 14: Paragraph, text break and formatting text in MS Frontpage 2003

Font Attribute:

Color = type the name of the color 2 Values of a colorName of the colorHexadecimal color code

Size = type any number from 1 to 6.

Face = type the name of the font.

Page 15: Paragraph, text break and formatting text in MS Frontpage 2003

Syntax

<font color=green size=3 face=“Comic Sans MS”> Your Text Here </font>