Quiz Competition


HTML BASIC QUIZE

1-What does HTML stand for?

Hyperlinks and Text Markup Language
Home Tool Markup Language
HyperText Markup Language

2-Which HTML tag is used to create a hyperlink?

< link>
< a>
< href>

3- What is the correct HTML element for inserting a line break?

< break>
< br>
< lb>

4- Which tag is used to display the largest heading?

< h6>
< heading>
< h1>
HTML MEDIUM QUIZE

1- Which attribute is used in HTML to open a link in a new tab or window?

target="_blank"
newtab="true"
open="new"

2- What is the correct way to specify an image’s alternative text?

< img src="image.jpg" alt="Description here">
< img src="image.jpg" description="Description here">
< img src="image.jpg" text="Description here">

3- Which tag is used to group related elements in a form?

< fieldset>
< group>
< section>

4- What does the tag do?

Defines the language of the web page
Specifies the character encoding for the document
Sets the page’s background color
HTML HARD QUIZE

1- What is the purpose of the < noscript> tag in HTML?

To hide elements when JavaScript is enabled
To display alternative content when JavaScript is disabled
To load external JavaScript files

2- Which HTML element is used to define metadata about an HTML document that is not displayed to users?

< meta>
< data>
< info>

3- What is the difference between < section> and < article> elements?

< section> is for standalone content, while < article> groups related content
< article> is for standalone, self-contained content, while < section> groups related thematic content
They are interchangeable with no semantic difference

4- What will happen if two tags are defined in one HTML document?

The browser ignores both and uses default encoding
The first one takes precedence
The last one takes precedence