QUIZ 1 QUIZ 2 ASSIGNMENTS  --- CONTENT ---   Introduction HTML Editors Basic HTML Tags Heading Tags Paragraph Tags Line Break Tag Horizontal Lines Preserve Formatting Links Images Formatting Tables Heading Colspan and Rowspan Backgrounds Height and Width Header, Body, and Footer Lists Unordered List UL Types Ordered List OL Types Div Span Forms Fieldset Legend Label Input Select Datalist Textarea

<b>

This tag specifies bold text.

For example:

	            
<b>Hello</b>	            	
	            
            

Becomes:

Hello

<i>

This tag is used to display the content in italic.

For example:

	            
<i>My name is HTML</i>	            	
	            
            

Becomes:

My name is HTML

sub

This tag is used for defining subscript text

For example:

	            
x<sub>2</sub> - x<sub>1</sub> = x<sub>0</sub>
	            
            

Becomes:

x2 - x1 = x0

sup

This tag is used for defining superscript text

For example:

	            
x<sup>2</sup> - y<sup>1</sup> = 5<sup>2</sup>
	            
            

Becomes:

x2 - y1 = 52

del

This tag is used for markup of deleted text.

For example:

	            
I am <del>CSS</del> HTML.     	
	            
            

Becomes:

I am CSS HTML.

ins

This tag is used to indicate newly inserted text.

For example:

	            
I am <ins>HTML 5</ins>	            	
	            
            

Becomes:

I am HTML 5

mark

This tag specifies a text highlighted for reference purposes, that is for its relevance in another context

For example:

	            
HTML is the <mark>foundation stone</mark> of web.
	            
            

Becomes:

HTML is the foundation stone of web.

iframe

You can define an inline frame with HTML tag. The tag is not somehow related to tag, instead, it can appear anywhere in your document. The tag defines a rectangular region within the document in which the browser can display a separate document, including scrollbars and borders. An inline frame is used to embed another document within the current HTML document.

The src attribute is used to specify the URL of the document that occupies the inline frame. It pops up the text if it is not supported.

For example:

	            
<iframe src = "logo.svg" width = "555" height = "200">
    Sorry your browser does not support inline frames.
</iframe>	            	
	            
            

Becomes: