Community
What does the "p" in <p> stand for?
Paragraph
<i>MYP Design</u>
Spot the error?
</i> instead of </u>
What does src stand for in <img src>
source
h1{
color: red;
font-size: 20px;
}
What code shall we add such that the heading becomes centered?
text-align: center;
<img href = "image1.png">
Spot the error
href needs to be replaced with src.
<img src>
Which HTML tag will create the largest heading?
<h1>
<h1> or <h3>, which heading is bigger in size?
<h3>
body{
background-color: #000000;
}
What color will you see as background on your webpage?
black
The <a> tag is used for?
Creating hyperlinks
Which character is used to indicate an end tag?
/
Give an example of any HTML tag?
<p>, <b>, <img>....
Which tag do you use to create a numbered list?
<ol> tag
body{
color: black;
background-color: white;
}
What color of text will you see on this webpage?
black
<title> is used to add headings on webpages. True or False.
False. Its the title of the window.
Name one HTML tag that does not need closing tags?
<img>
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">
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
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>
What does "li" in the <li> tag, stand for?
List item
What is <u> tag for?
Underlining the text
Which tag is used to make the text appear as bold?
<b>
What tag do you use to create a bullet point list?
<ul> tag
<marquee> is a tag used for?
Scrolling animation
What tag would you use to make a numbered list?
What is <ol>?
What is the file extension of a file which has HTML code in it?
.html or .htm?