HTML and CSS Quiz

HTML and CSS Quiz

Professional Development

30 Qs

quiz-placeholder

Similar activities

Aplicaciones Ofimáticas UF5-UF6

Aplicaciones Ofimáticas UF5-UF6

Professional Development

31 Qs

Walentynki

Walentynki

KG - Professional Development

28 Qs

web13

web13

Professional Development

31 Qs

PHP Complete Test

PHP Complete Test

Professional Development

31 Qs

TRIVIA POR EL DÍA DE LA HIPERTENSION ARTERIAL

TRIVIA POR EL DÍA DE LA HIPERTENSION ARTERIAL

Professional Development

30 Qs

Ôn tập từ vựng bài 27

Ôn tập từ vựng bài 27

Professional Development

25 Qs

KOMSTRAT TEBU 2019

KOMSTRAT TEBU 2019

Professional Development

25 Qs

MAPEL KIMIA X-TKJ dan X- ATPH

MAPEL KIMIA X-TKJ dan X- ATPH

Professional Development

30 Qs

HTML and CSS Quiz

HTML and CSS Quiz

Assessment

Quiz

Other

Professional Development

Hard

Created by

Viswathika K

Used 2+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the role of charset attribute? It specifies

a scheme to be used to interpret the value of the content attribute

a name for the metadata

the character encoding for the HTML document

the character decoding for the HTML document

Answer explanation

The charset attribute in HTML is used to specify the character encoding of the HTML document. Character encoding determines how characters are represented in bytes, which is essential for displaying text correctly, especially when the page includes special characters, symbols, or non-English alphabets.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which variable is used to collect form data sent with both the GET and POST methods?

$BOTH

$_BOTH

$REQUEST

$_REQUEST

Answer explanation

In PHP, the $_REQUEST superglobal variable is used to collect form data sent with both GET and POST methods, as well as data from cookies. It is an associative array that automatically retrieves input from $_GET, $_POST, and $_COOKIE.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

For grouping together one or more

<h1> to <h6>

element what element is used?

<header>

<hgroup>

<div>

<section>

Answer explanation

The <hgroup> element in HTML is used to group a set of <h1> to <h6> headings when they form a single composite heading. This is helpful when you have a main heading with one or more subheadings and want to treat them as a unified block for semantic purposes.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Footer element can't contain ____________ information.

contact information

copyright information

the author of the document

blog post

Answer explanation

: A footer for a document or section is specified by <footer> element. It should contain information about its containing element. This element typically contains the author of the document, links to terms of use, copyright information, contact information.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not an appropriate value for border-collapse?

all

collapse

inherit

separate

Answer explanation

The border-collapse property in CSS is used with HTML tables to control whether table borders are separated or collapsed into a single border.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the specificity of this "li".

specificity = 0,0,0,1

specificity = 0,0,1,1

specificity = 0,1,1,1

specificity = 1,1,1,1

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of below mentioned code snippet?

p strong {background-color: yellow;}

Strong have yellow background

Strong element within a p element have a yellow background

Both p and strong have yellow background

None of the mentioned

Answer explanation

All <strong> elements inside <p> (paragraph) elements will have a yellow background color. The CSS selector p strong is a descendant selector. It targets all <strong> tags that are nested anywhere inside a <p> tag.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?