BCA SCHOOL
Programming Tutorials • Notes • Practical • Books
LATEST TUTORIALS

HTML ELEMENTS

by BCA School


HTML ELEMENTS

HTML

ELEMENTS

These elements are used to specify how text should be rendered. When working with the text sometimes you want the text to have a particular look, such as bold, underline, italics, etc.

ELEMENTS USE SYNTAX
ITALICS It specifies that the enclosed text should be displayed in italics. <b>...</b>
UNDERLINE It states that the enclosed text should be underlined. <u>.... </u>
BIG It specifies that the enclosed text should be displayed using bigger font as compared with the current font. <big>.... </big>
SMALL It specifies that the enclosed text should be displayed using smaller font as compared with the current font. <small>...</small>
STRIKE It specifies that the enclosed text should be displayed with a horizontal line striking through the text. <strike>...</strike>
SUBSCRIPT It specifies that the enclosed text should be displayed as a subscript using a smaller font as compared to the rest of the text. <sub>...</sub>
SUPERSCRIPT It specifies that the enclosed text should be displayed as a superscript using a smaller font as compared to the rest of the text <sup>...</sup>
TYPEWRITER It specifies that the text should be rendered in fixed-width typewriter font. <tt>.... </tt>
BLINK Surrounding any text with this element will cause the selected text to blink on the viewing page. <blink></blink>