Ch - 7. HTML : Hyper Text Markup Language



EXERCISE 



A. Fill in the blanks.


1. __________ are used to denote various elements in HTML.

Ans : Tags


2. HTML supports _________ standard colour names.

Ans : RGB


3. RGB stands for _________, _________ and __________.

Ans : Red, Green, Blue


4. RGB value ranges from _________ to _________.

Ans : 00, 225 or 00, FF


B. Answer these Questions.


Question 1 

Define elements in HTML. Give some examples.

Answer

An HTML element usually consists of a start tag and end tag, with the content inserted in between:

<tagname>Content goes here...</tagname>

The HTML Element is everything from the start tag to the end tag:

<p>My first paragraph.</p>