HTML Revision Worksheet- VI
HTML Revision Worksheet
Match the Following
Column A (HTML Tags) | Column B (Description) |
---|---|
1.<html> | A) The main container for all HTML code |
2.<head> | B) Contains information about the webpage |
3.<title> | C) The name that appears on the browser tab |
4.<body> | D) The section where the content of the webpage is placed |
5.<h1> | E) The biggest heading on a webpage |
6.<p> | F) A block of text or a paragraph |
7.<img> | G) Displays an image on the webpage |
8.<li> | H) An item in a list |
9.<br> | I) Adds a line break in the text |
10.<strong> | J) Makes the text bold |
11.<hr> | K) Adds a horizontal line across the page |
Answer the Following
Q1: What does HTML stand for?
Ans: HTML stands for HyperText Markup Language.
Q2: What are tags in HTML?
Ans: Tags in HTML are element markers used to structure content.
Q3: What is the primary purpose of HTML?
Ans: The primary purpose of HTML is to structure content on the web.
Q4: List two benefits of using HTML.
Ans: HTML is widely supported across all browsers, and it is easy to learn.
Q5: What are the two main parts of an HTML page?
Ans: The two main parts of an HTML page are the <head> and <body>.
Q6: What does the <head> element contain?
Ans: The <head> element contains metadata, links to stylesheets, and the document title.
Q7: What does the <body> element contain?
Ans: The <body> element contains all the visible content of the webpage.
Q8: What is the purpose of the <h1> tag?
Ans: The <h1> tag is used to define the main heading of a webpage.
Q9: Which tag is used to define a paragraph?
Ans: The <p> tag is used to define a paragraph.
Q10: What does the <a> tag define?
Ans: The <a> tag defines a hyperlink.
Q11: Which tag is used to define an image?
Ans: The <img> tag is used to define an image.
Q12: Name two common HTML attributes.
Ans: Two common HTML attributes are id and class.
Q13: What is a Heading?
Ans: A heading is a title or subtitle used to introduce a section of content.
Q14: Write all the 6 HTML heading tags with opening and closing.
Ans: The six HTML heading tags are <h1></h1>, <h2></h2>, <h3></h3>, <h4></h4>, <h5></h5>, and <h6></h6>.
Q15: What are Paragraph Tags?
Ans: Paragraph tags, such as <p>, are used to define blocks of text as paragraphs.
Fill in the Blanks
1) HTML stands for __________.
Ans: HyperText Markup Language
2) HTML provides the basic __________ of a webpage.
Ans: structure
3) HTML is the standard markup language for creating __________.
Ans: web pages
4) An HTML document is a plain __________ file.
Ans: text
5) HTML is the foundation of __________ development.
Ans: web
6) The <!DOCTYPE html> declaration is used to define the __________ of the document.
Ans: document type
7) The <html> element represents the __________ of the HTML document.
Ans: root
8) The __________ tag contains metadata and links to external resources.
Ans: <head>
9) The __________ tag defines the main content of the webpage.
Ans: <body>
10) The <title> tag content is displayed in the __________ of the browser.
Ans: tab
11) The <h1> to <h6> tags define HTML __________.
Ans: headings
12) The <p> tag is used to define a block of __________ in HTML.
Ans: text
13) The <title> tag is placed within the __________ section of an HTML document.
Ans: <head>
True or False
1) HTML is a programming language.
Ans: False (HTML is a markup language.)
2) The latest version of HTML is HTML4.
Ans: False (The latest version is HTML5.)
3) HTML was created by Tim Berners-Lee.
Ans: True
4) HTML documents are saved with the .htm or .html extension.
Ans: True
5) Every HTML document must start with a <!DOCTYPE html> declaration.
Ans: True
6) The <html> tag is used to specify the language of the document.
Ans: True
7) The <body> tag is placed inside the <head> tag.
Ans: False (The <body> tag is placed outside the <head> tag.)
8) The <p> tag is used to create a paragraph.
Ans: True
9) The <h1> tag is smaller than the <h6> tag.
Ans: False (The <h1> tag is the largest heading.)
10) The <a> tag can be used to create a link to another webpage.
Ans: True
11) The <h1> to <h6> tags are used to define __________.
Ans: headings
12) The <p> tag is used to define a __________.
Ans: paragraph
13) The <a> tag must include the __________ attribute to define the link destination.
Ans: href
14) The <ul> tag creates a list with __________ points.
Ans: bullet
15) The <h1> tag should be used for the most important heading on a page.
Ans: True
16) The <h6> tag is the largest heading in HTML.
Ans: False (The <h1> tag is the largest heading.)
17) The <p> tag is used to create headings.
Ans: False (The <p> tag is used to create paragraphs.)
Comments
Post a Comment