CBSE Class 12 Informatics Practices Html Basic Html Elements Worksheet

Read and download the CBSE Class 12 Informatics Practices Html Basic Html Elements Worksheet in PDF format. We have provided exhaustive and printable Class 12 Informatics Practices worksheets for Html Basic Html Elements, designed by expert teachers. These resources align with the 2025-26 syllabus and examination patterns issued by NCERT, CBSE, and KVS, helping students master all important chapter topics.

Chapter-wise Worksheet for Class 12 Informatics Practices Html Basic Html Elements

Students of Class 12 should use this Informatics Practices practice paper to check their understanding of Html Basic Html Elements as it includes essential problems and detailed solutions. Regular self-testing with these will help you achieve higher marks in your school tests and final examinations.

Class 12 Informatics Practices Html Basic Html Elements Worksheet with Answers

HTML
Hyper Text markup language (HTML) is used to create web pages or web documents. It tells the web browser how to display text, pictures and links on the screen. HTML provides various markup elements. Using these elements we can specify various parts of a web page and formatting of web page. Basically HTML is used to design the layout of a document with hyperlink.

Elements of HTML:
HTML is made up of elements called Tags and Attributes.
Tags: A tag is coded HTML command within angular <> bracket. It is not case sensitive. There are two types of tags Empty tags and Container tags.

Attribute: An Attribute is a special word used inside tag to specify additional information of tag such as color, alignment etc.

Container and Empty Tags
There are two types of Tags – one that requires a starting as well as ending tag and another that requires just a starting tag and not an ending tag.

Container Tag: A container tags requires starting tag and as well as ending tag. Example:
<Title>…..</Title>, <HEAD>…….</HEAD>

Empty Tag: Empty Elements have only a starting tag and no ending tag. e.g. <HR> inserts a horizontal rule and <BR> breaks a line.

Structure of HTML Document:
<HTML> // It identifies that the document is an HTML document.
<HEAD> // Head tag makes the header for document.
<TITLE> KVS </TITLE></HEAD> //contains the title which appears in the title bar of the web browser
<BODY> Kendriya Vidyalaya Sangathan </BODY> // The content written in BODY tag appears in the windows. It contains many other tags.
</HTML>

Commonly used Empty tags:

<!...Comment..>
It is used to define comments in HTML. This can be viewed in the HTML but is not displayed in web browser.
Example: <!.... This text to display in window....>
<BR> Break Line
BR tag is used to break line. It displays remaining text in the next line.
Example: Kendriya Vidyalaya Sangathan <BR> New Delhi
<HR> Horizontal Ruler
HR tag is used to insert a Horizontal line across the browser window. The attributes of HR tag are size, width and color.
Example: <HR Size=10, Color= Red, Width 50%>
<BASEFONT>
This tag is used to define the default size of the font, where font is not defined. Attributes of
<Basefont>
tags are size, face and color.
Example: <BASEFONT size=5 color= Green Face=”Arial”>
Commonly used Container tags
<HTML>….</HTML>
This tag is used to mark begin and end of HTML document. It may contain <Head> and
<Body tag>.
Example: <HTML><HEAD> <TITLE> KVS </TITLE> </HEAD></HTML>
<TITLE>…….</TITLE>
It specifies the title and is displayed in the title bar of the web browser.
Example: <TITLE>Title of your webpage</TITLE>
<HEAD>…….</HEAD>
It is used to specify the document header. It contains information like title, style etc.
Example: <HEAD>Contains elements describing the document</HEAD>
<BODY>…………..</BODY>
This tag is used to define the content of the documents. It may contain text, images,
multimedia, tables, list, form etc. Attributes of <Body> tags are bgcolor, background, link, Vlink,
Alink, text, leftmargin, topmargin.
Example: <BODY>The content of your page</BODY>
<BODY bgcolor=Red” Text=”green” link=”red”>
<BODY Background=”picture path” Topmargin=”70” Leftmargin=10 vlink=”lime”
alink=”red”>
<H1>…….</H1> to <H6>…….</H6>
It is used to specify the headings in a web page. In HTML there are six levels of heading (1 to

6). <H1> is the largest and </H6> is the smallest size. Attribute of <H1> tags is align.
Example: <TITLE>Title of your webpage</TITLE>
< H1>Central Board of secondary Education</H1>
<H3 Align=”Center”>New Delhi</H3>
< P>…….</P>
To start a new paragraph. It specifies begin and end of the paragraph.
Example: This is an example displaying the use of the paragraph tag. <P> It will create a line
break and a space between lines.
< IMG>…………..</IMG>
This tag is used to display images (.jpg, bmp, .gif etc) in web pages. Attributes of <img > tag are
src,
width, height, align, border.
Example: <IMG SRC=” Location”, BORDER=”5” Align=”Left” width =“40”, Height=”50”>
<A>…….</A>
It specifies Active link of the other web page. When mouse is roll over the text, the mouser
pointer is automatically converted into the hand shaped cursor.
Example: <A HREF="http://www.yourdomain.com/">Visit Our Site</A>
Other tags:
<B>………..</B> : To make text bold
<I>….…..</I> : To make text Italic
<U>……...</U> : To make text underline
<Sup>…..<Sup> : To make text in the form of superscript like 54
<Sub>….</Sub> : To make text in the form of subscript like co2
<CENTER>…</CENTER>: To make text centralized.

Logical and Physical Text Styles
HTML has two types of styles for individual word or sentences:
1. Logical Styles
2. Physical Styles

Logical Text Styles

Logical Text: Logical text Styles are general descriptions. Each browser handles a logical style in its own way.
<DFN> : For a word being defined. Typically displayed in italics.
<EM> : For emphasis. Typically displayed in italics.
<CITE> : For titles of books, films etc. Typically displayed in italics
<STRONG> : For strong emphasis. Typically displayed in bold.
<CODE> : For computer code. Displayed in a fixed width font.
<KBD> : For user keyboard entry. Typically displayed in plain fixed- width font.
<VAR> : For a variable, where you will replace the variable with specific Information typically displayed in italics.

Physical Text Styles
Physical Text styles indicate the specific type of appearance for a section e.g. , bold, italics etc.
<B> : Bold text
<I> : Italic text
<U> : underline text
<TT> : type writer text (Fixed-width font)

Very Short Answer Type Question

1. HTML tags must be written within_____________.

2. What is the correct structure of HTML tags?

3. The IMAGE tag uses the _______ attribute to specify the URL of the image to be displayed.

4. Which tag is used to embed an image in an HTML document?

5. What is HTML?

6. What is the use of TITLE tag in HTML?

7. How to change the background color of the HTML page?

8. What are the different levels of Headings?

9. What is the use of <BR> tag ?

10. What all tags required in every HTML page?

11. Write the properties of <FONT> tag.

12. Write the code in HTML to set color as Red and text “ I am learning HTML” as blue.

13. How would you display title in your web page?

14. Write the code in HTML to set the image “Book. jpg” stored in “”Photos” folder in D; Drive as the background of your web page.

Short Answer Type Question

1. What is use of comments? Which tag is used for comments?

2. Differentiate between container and empty elements.

3. What are logical and Physical Text Styles?

4. Differentiate between <BR> and <P> tag.

5. What is the use of <IMG>tag? Also write its properties

CBSE Informatics Practices Class 12 Html Basic Html Elements Worksheet

Students can use the practice questions and answers provided above for Html Basic Html Elements to prepare for their upcoming school tests. This resource is designed by expert teachers as per the latest 2026 syllabus released by CBSE for Class 12. We suggest that Class 12 students solve these questions daily for a strong foundation in Informatics Practices.

Html Basic Html Elements Solutions & NCERT Alignment

Our expert teachers have referred to the latest NCERT book for Class 12 Informatics Practices to create these exercises. After solving the questions you should compare your answers with our detailed solutions as they have been designed by expert teachers. You will understand the correct way to write answers for the CBSE exams. You can also see above MCQ questions for Informatics Practices to cover every important topic in the chapter.

Class 12 Exam Preparation Strategy

Regular practice of this Class 12 Informatics Practices study material helps you to be familiar with the most regularly asked exam topics. If you find any topic in Html Basic Html Elements difficult then you can refer to our NCERT solutions for Class 12 Informatics Practices. All revision sheets and printable assignments on studiestoday.com are free and updated to help students get better scores in their school examinations.

Where can I download latest CBSE Printable worksheets for Class 12 Informatics Practices Html Basic Html Elements

You can download the CBSE Printable worksheets for Class 12 Informatics Practices Html Basic Html Elements for latest session from StudiesToday.com

Is there any charge for the Printable worksheets for Class 12 Informatics Practices Html Basic Html Elements

There is no charge for the Printable worksheets for Class 12 CBSE Informatics Practices Html Basic Html Elements you can download everything free

Are there any websites that offer free test sheets for Class 12 Informatics Practices Html Basic Html Elements

Yes, studiestoday.com provides all latest NCERT Html Basic Html Elements Class 12 Informatics Practices test sheets with answers based on the latest books for the current academic session

What topics are covered in CBSE Class 12 Informatics Practices Html Basic Html Elements worksheets?

CBSE Class 12 Informatics Practices Html Basic Html Elements worksheets cover all topics as per the latest syllabus for current academic year.

How can I use worksheets to improve my Class 12 Informatics Practices scores?

Regular practice with Class 12 Informatics Practices worksheets can help you understand all concepts better, you can identify weak areas, and improve your speed and accuracy.