Set A
Match the HTML5 input types with their descriptions.
Column A (Input Type) Column B (Description)
1. type="number" a) Defines a date picker (year, month, day)
2. type="range" b) Defines a field for entering a URL
3. type="date" c) Defines a control for entering a number
4. type="url" d) Defines a control for entering a number whose exact value is not important
5. type="color" e) Defines a color picker
Set A: Answers
type="number" → c) Defines a control for entering a number
type="range" → d) Defines a control for entering a number whose exact value is not important
type="date" → a) Defines a date picker (year, month, day)
type="url" → b) Defines a field for entering a URL
type="color" → e) Defines a color picker
Set B
Match the CSS property with its primary function.
Column A (CSS Property) Column B (Function)
1. text-align a) Controls space between lines of text
2. line-height b) Controls horizontal alignment of text
3. letter-spacing c) Controls space between words
4. word-spacing d) Controls space between characters
Set B: Answers
text-align → b) Controls horizontal alignment of text
line-height → a) Controls space between lines of text
letter-spacing → d) Controls space between characters
word-spacing → c) Controls space between words
text-indent → e) Indents the first line of a text block
Set C
Match the HTML tag with its purpose.
Column A (HTML Tag) Column B (Purpose)
1. <meta> a) Defines a client-side image map
2. <map> b) Provides metadata about the HTML document
3. <area> c) Defines an inline frame
4. <iframe> d) Defines a clickable area inside an image map
5. <source> e) Specifies multiple media resources for media elements
Set C: Answer
<meta> → b) Provides metadata about the HTML document
<map> → a) Defines a client-side image map
<area> → d) Defines a clickable area inside an image map
<iframe> → **c) Defines an inline frame**
<source> → e) Specifies multiple media resources for media elements
Set D
Match the CSS concept with its correct description.
Column A (CSS Concept) Column B (Description)
1. Inline CSS a) Styles defined in a separate .css file
2. Internal CSS b) Styles applied directly to an HTML element using the style attribute
3. External CSS c) Styles defined within the <style> tag in the <head> section
4. Specificity d) A formula that determines which CSS rule is applied by the browsers
5. !important rule e) Overrides all other styling declarations for a property
Set D: Answer
Inline CSS → b) Styles applied directly to an HTML element using the style attribute
Internal CSS → c) Styles defined within the <style> tag in the <head> section
External CSS → a) Styles defined in a separate .css file
Specificity → d) A formula that determines which CSS rule is applied by the browsers
!important rule → e) Overrides all other styling declarations for a property
Set E
Match the audio/video attribute with its effect.
Column A (Attribute) Column B (Effect)
1. autoplay a) The media will start over again when finished
2. controls b) The media will play automatically when ready
3. loop c) The audio output of the video is silenced
4. muted d) Displays media controls (play, pause, volume, etc.)
5. preload e) Specifies if and how the media should be loaded when the page loads
Set E: Answer
autoplay → b) The media will play automatically when ready
controls → d) Displays media controls (play, pause, volume, etc.)
loop → a) The media will start over again when finished
muted → c) The audio output of the video is silenced
preload → e) Specifies if and how the media should be loaded when the page loads