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 teachers as per the latest Informatics Practices 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
CBSE Class 12 Informatics Practices Data Handling using Pandas Worksheet |
CBSE Class 12 Informatics Practices Societal Impacts Worksheet |
Worksheet for CBSE Informatics Practices Class 12 Html Basic Html Elements
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. Expert teachers of studiestoday have referred to the NCERT book for Class 12 Informatics Practices to develop the Informatics Practices Class 12 worksheet. 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. 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.
You can download the CBSE Printable worksheets for Class 12 Informatics Practices Html Basic Html Elements for latest session from StudiesToday.com
There is no charge for the Printable worksheets for Class 12 CBSE Informatics Practices Html Basic Html Elements you can download everything free
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
CBSE Class 12 Informatics Practices Html Basic Html Elements worksheets cover all topics as per the latest syllabus for current academic year.
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.