CBSE Class 12 Informatics Practices Html Basic Html Elements Worksheet

Read and download free pdf of CBSE Class 12 Informatics Practices Html Basic Html Elements Worksheet. Students and teachers of Class 12 Informatics Practices can get free printable Worksheets for Class 12 Informatics Practices Html Basic Html Elements in PDF format prepared as per the latest syllabus and examination pattern in your schools. Class 12 students should practice questions and answers given here for Informatics Practices in Class 12 which will help them to improve your knowledge of all important chapters and its topics. Students should also download free pdf of Class 12 Informatics Practices Worksheets prepared by school teachers as per the latest NCERT, CBSE, KVS books and syllabus issued this academic year and solve important problems with solutions on daily basis to get more score in school exams and tests

Worksheet for Class 12 Informatics Practices Html Basic Html Elements

Class 12 Informatics Practices students should refer to the following printable worksheet in Pdf for Html Basic Html Elements in Class 12. This test paper with questions and answers for Class 12 will be very useful for exams and help you to score good marks

Class 12 Informatics Practices Worksheet for Html Basic Html Elements

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

More Worksheets for Class 12 Informatics Practices
CBSE Class 12 Informatics Practices Commonly Used Libraries Worksheet
CBSE Class 12 Informatics Practices Computer Networking Worksheet
CBSE Class 12 Informatics Practices Computer Xml Extensible Markup Language Worksheet
CBSE Class 12 Informatics Practices Concept Of Inheritance Worksheet
CBSE Class 12 Informatics Practices Database Connectivity To MySQL Worksheet
CBSE Class 12 Informatics Practices Database Fundamentals MySQL Revision Tour Worksheet
CBSE Class 12 Informatics Practices Database Transactions Worksheet
CBSE Class 12 Informatics Practices File Handling Worksheet
CBSE Class 12 Informatics Practices Html Basic Html Elements Worksheet
CBSE Class 12 Informatics Practices Html Lists Tables And Forms Worksheet
CBSE Class 12 Informatics Practices Introducing Classes And Objects Worksheet
CBSE Class 12 Informatics Practices It Applications Worksheet
CBSE Class 12 Informatics Practices Java Application Worksheet
CBSE Class 12 Informatics Practices Java Gui Programming Revision Worksheet
CBSE Class 12 Informatics Practices Java Gui Programming Worksheet
CBSE Class 12 Informatics Practices More On Sql Grouping Records And Table Joins Worksheet
CBSE Class 12 Informatics Practices MySQL Worksheet
CBSE Class 12 Informatics Practices Networking Worksheet
CBSE Class 12 Informatics Practices Open Source Concepts Worksheet
CBSE Class 12 Informatics Practices Sure Shot Questions Worksheet
CBSE Class 12 Informatics Practices Sure Shot Questions Worksheet Set A
CBSE Class 12 Informatics Practices Table And Integrity Constraints Worksheet
CBSE Class 12 Informatics Practices Web Application Development Worksheet

More Study Material

CBSE Class 12 Informatics Practices Html Basic Html Elements Worksheet

We hope students liked the above worksheet for Html Basic Html Elements designed as per the latest syllabus for Class 12 Informatics Practices released by CBSE. Students of Class 12 should download in Pdf format and practice the questions and solutions given in the above worksheet for Class 12 Informatics Practices on a daily basis. All the latest worksheets with answers have been developed for Informatics Practices by referring to the most important and regularly asked topics that the students should learn and practice to get better scores in their class tests and examinations. Studiestoday is the best portal for Class 12 students to get all the latest study material free of cost.

Worksheet for Informatics Practices CBSE Class 12 Html Basic Html Elements

Expert teachers of studiestoday have referred to the NCERT book for Class 12 Informatics Practices to develop the Informatics Practices Class 12 worksheet. If you download the practice worksheet for one chapter daily, you will get higher and better marks in Class 12 exams this year as you will have stronger concepts. Daily questions practice of Informatics Practices worksheet and its study material will help students to have a stronger understanding of all concepts and also make them experts on all scoring topics. You can easily download and save all revision worksheet for Class 12 Informatics Practices also from www.studiestoday.com without paying anything in Pdf format. After solving the questions given in the worksheet which have been developed as per the latest course books also refer to the NCERT solutions for Class 12 Informatics Practices designed by our teachers

Html Basic Html Elements worksheet Informatics Practices CBSE Class 12

All worksheets given above for Class 12 Informatics Practices have been made as per the latest syllabus and books issued for the current academic year. The students of Class 12 can be rest assured that the answers have been also provided by our teachers for all worksheet of Informatics Practices so that you are able to solve the questions and then compare your answers with the solutions provided by us. We have also provided a lot of MCQ questions for Class 12 Informatics Practices in the worksheet so that you can solve questions relating to all topics given in each chapter. All study material for Class 12 Informatics Practices students have been given on studiestoday.

Html Basic Html Elements CBSE Class 12 Informatics Practices Worksheet

Regular worksheet practice helps to gain more practice in solving questions to obtain a more comprehensive understanding of Html Basic Html Elements concepts. Worksheets play an important role in developing an understanding of Html Basic Html Elements in CBSE Class 12. Students can download and save or print all the worksheets, printable assignments, and practice sheets of the above chapter in Class 12 Informatics Practices in Pdf format from studiestoday. You can print or read them online on your computer or mobile or any other device. After solving these you should also refer to Class 12 Informatics Practices MCQ Test for the same chapter.

Worksheet for CBSE Informatics Practices Class 12 Html Basic Html Elements

CBSE Class 12 Informatics Practices best textbooks have been used for writing the problems given in the above worksheet. If you have tests coming up then you should revise all concepts relating to Html Basic Html Elements and then take out a print of the above worksheet and attempt all problems. We have also provided a lot of other Worksheets for Class 12 Informatics Practices which you can use to further make yourself better in Informatics Practices

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

Can I download the Printable worksheets of Html Basic Html Elements Class 12 Informatics Practices in Pdf

Yes, you can click on the links above and download Printable worksheets in PDFs for Html Basic Html Elements Class 12 for Informatics Practices

Are the Class 12 Informatics Practices Html Basic Html Elements Printable worksheets available for the latest session

Yes, the Printable worksheets issued for Class 12 Informatics Practices Html Basic Html Elements have been made available here for latest academic session

How can I download the Class 12 Informatics Practices Html Basic Html Elements Printable worksheets

You can easily access the links above and download the Class 12 Printable worksheets Informatics Practices Html Basic Html Elements for each chapter

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

How can I improve my scores by solving questions given in Printable worksheets in Class 12 Informatics Practices Html Basic Html Elements

Regular revision of practice worksheets given on studiestoday for Class 12 subject Informatics Practices Html Basic Html Elements can help you to score better marks in exams

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

Can test papers for Class 12 Informatics Practices Html Basic Html Elements be accessed on mobile devices

Yes, studiestoday provides worksheets in Pdf for Html Basic Html Elements Class 12 Informatics Practices in mobile-friendly format and can be accessed on smartphones and tablets.

Are worksheets for Html Basic Html Elements Class 12 Informatics Practices available in multiple languages

Yes, worksheets for Html Basic Html Elements Class 12 Informatics Practices are available in multiple languages, including English, Hindi