CBSE Class 12 Informatics Practices Html Basic Html Elements Worksheet

Download Class 12 Informatics Practices Practice Worksheets

Access comprehensive chapter-wise worksheets for Html Basic Html Elements using the CBSE Class 12 Informatics Practices Html Basic Html Elements Worksheet. Designed to align with the 2026-27 academic syllabus for Class 12 Informatics Practices, these printable practice sets help students reinforce key concepts and improve their overall exam readiness.

Access Html Basic Html Elements Practice Papers and Solutions

Access the complete worksheet PDF for Class 12 Informatics Practices below. Regular practice with these targeted academic tasks builds familiarity with standard question patterns and helps secure higher marks in final school examinations.

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

Free CBSE Practice Worksheets: Class 12 Informatics Practices Html Basic Html Elements

Practice Exercises for Class 12 Informatics Practices Html Basic Html Elements

Access structured practice worksheets for Html Basic Html Elements aligned with the 2026 CBSE curriculum. These downloadable exercises for Class 12 Informatics Practices help students build accuracy and reinforce core concepts for upcoming school tests.

Step-by-Step Solutions and Practice Guidelines

Designed around the official curriculum for Class 12 Informatics Practices, these practice sheets guarantee standard compliance. Reviewing step-by-step solutions after completion sharpens your accuracy and clarifies complex sub-topics within Html Basic Html Elements.

Enhance Speed with Online Practice

Consistent engagement with these exercises builds familiarity with recurring exam themes. If specific areas within Html Basic Html Elements cause trouble, utilize our dedicated NCERT solutions for Class 12 Informatics Practices to clear up doubts immediately.

FAQs

Where can I download the 2026-27 CBSE printable worksheets for Class 12 Informatics Practices Html Basic Html Elements?

You can download the latest chapter-wise printable worksheets for Class 12 Informatics Practices Html Basic Html Elements for free from StudiesToday.com. These have been made as per the latest CBSE curriculum for this academic year.

Are these Html Basic Html Elements Informatics Practices worksheets based on the new competency-based education (CBE) model?

Yes, Class 12 Informatics Practices worksheets for Html Basic Html Elements focus on activity-based learning and also competency-style questions. This helps students to apply theoretical knowledge to practical scenarios.

Do the Class 12 Informatics Practices Html Basic Html Elements worksheets have answers?

Yes, we have provided solved worksheets for Class 12 Informatics Practices Html Basic Html Elements to help students verify their answers instantly.

Can I print these Html Basic Html Elements Informatics Practices test sheets?

Yes, our Class 12 Informatics Practices test sheets are mobile-friendly PDFs and can be printed by teachers for classroom.

What is the benefit of solving chapter-wise worksheets for Informatics Practices Class 12 Html Basic Html Elements?

For Html Basic Html Elements, regular practice with our worksheets will improve question-handling speed and help students understand all technical terms and diagrams.