HTML:
Community
HTML:
Celebration
HTML:
Courage
HTML:
Curiosity
HTML:
Creativity
100

What does the "p" in <p> stand for?

Paragraph

100

<i>MYP Design</u> 

Spot the error?


</i> instead of </u>

100

What does src stand for in <img src> 

source

100

h1{

      color: red;

      font-size: 20px;

}

What code shall we add such that the heading becomes centered?

text-align: center;

100

<img href = "image1.png"> 

Spot the error

href needs to be replaced with src. 

<img src>

200

Which HTML tag will create the largest heading?

<h1>

200

<h1> or <h3>, which heading is bigger in size?

<h3>

200

body{

       background-color: #000000;

}

What color will you see as background on your webpage?

black

200

The <a> tag is used for?

Creating hyperlinks

200

Which character is used to indicate an end tag?

/

300

Give an example of any HTML tag?

<p>, <b>, <img>....

300

Which tag do you use to create a numbered list?

<ol> tag

300

body{

   color: black;

   background-color: white;

}

What color of text will you see on this webpage?

black

300

<title> is used to add headings on webpages. True or False.

False. Its the title of the window. 

300

Name one HTML tag that does not need closing tags?

<img> 

400

What is the correct code for inserting an image?

1. <img href="image.gif">

2. <img alt="MyImage">

3. <img src="image.gif">

<img src = "image.gif">

400

What is the correct HTML code for inserting a hyperlink?

1. <a href="https://www.google.com" alt="Google">

2. <a href="https://www.google.com">Google</a>

3. <a src="https://www.google.com">Google</a>



Number 2

400

Spot the error:

<p><b>World's Richest Person</p></b>

The closing tags are in the wrong order. Should be </b> and then </p>

400

What does "li" in the <li> tag, stand for?

List item

400

What is <u> tag for?

Underlining the text

500

Which tag is used to make the text appear as bold?

<b>

500

What tag do you use to create a bullet point list?

<ul> tag

500

<marquee> is a tag used for?

Scrolling animation

500

What tag would you use to make a numbered list?

What is <ol>?

500

What is the file extension of a file which has HTML code in it?

.html or .htm?