Community
What does the "p" in <p> stand for?
Paragraph
<li>MYP Design</u>
Spot the error?
</li> instead of </u>
What does src stand for in <img src>
source
What does the alt attribute do?
Written explanation of images
<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>
<h3> or <h5>, which heading is bigger in size?
<h3>
What does the <strong> tag do?
It makes words appear to be bold.
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
It allows a link to open in a separate tab.
<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>, <br>, <hr>
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"> or #3
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>World's Richest Person<p>
The tags are in the wrong order.
What does "li" in the <li> tag, stand for?
List item
What is <em> tag for?
Emphasizing the text - making text italicized
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
The <br> is a tag used for?
Creating a single line break
What tag would you use to make a definition list?
What is <dl>?
What is the file extension of a file which has HTML code in it?
.html