HTML Images QuizS2C Home « HTML Images Quiz

The questions in this HTML quiz are on the topics covered in the HTML5 Basics section of the site. The table below lists the lesson used for each quiz, a description of the lesson content and the quiz number and questions associated with that lesson.

HTML Basics Quiz Summary

Click on a lesson in the table to go to that lesson for a refresher on the topics for that quiz.

Click on a quiz in the table to go straight to the quiz for a particular lesson.

HTML5 Basics Lessons Description Quiz Info.
Lesson 1 - Starting OutIn this lesson we gather the tools we need to get started on our journey into the world of HTML.Quiz1
7 questions
Lesson 2 - First HTML WebpageIn this lesson we discuss the syntax of a HTML element and do our first practical.Quiz2
7 questions
Lesson 3 - HTML Structure - DocumentWhat is the document structure of a HTML page, we find out in this lesson.Quiz3
7 questions
Lesson 4 - Text TagsIn this lesson we take our first look at HTML text tags.Quiz4
7 questions
Lesson 5 - FormattingIn this lesson we take our first look at HTML formatting tags.Quiz5
8 questions
Lesson 6 - Inline SemanticsIn this lesson we take a first look at the inline semantic HTML tags available.Quiz6
10 questions
Lesson 7 - ListsIn this lesson we learn how to create ordered and unordered lists.Quiz7
7 questions
Lesson 8 - ImagesIn this lesson we learn how to enhance the look of our web pages with images.This quiz.
6 questions
Lesson 9 - LinksIn this lesson we learn about getting from A to B using links.Quiz9
6 questions
Lesson 10 - Language TagsIn this lesson we learn about the different language tags.Quiz10
7 questions

HTML Basics Quiz 8

The quiz below tests your knowledge of the material learnt in HTML5 Basics - Lesson 8 - Images.

Question 1 : What HTML tag is used to create an area on the page to hold the referenced image?
- We use the <code>img</code> HTML tag to create an area on the page to hold the referenced image.
Question 2 : Which attribute specifies the URL of the image?
- The <code>src</code> attribute specifies the URL of the image.
Question 3 : What are the mandatory attributes we need to use with the <img> tag?
- The <code>src</code> and <code>alt</code> attributes must be specified when using the <code>img</code> tag.
Question 4 : We can use the same image more than once on a web page?
- It's perfectly acceptable to use an image several times on the same page and we can even vary its size using the <code>height</code> and <code>width</code> attributes.
Question 5 : Which image attribute provides information if the image cannot be loaded?
- The <code>alt</code> attribute provides information if the image cannot be loaded.
Question 6 : We must specify the <width> and <height> attributes when using the <img> tag?
-The <code>width</code> and <code>height</code> attributes are not mandatory when using the <code>img</code> HTML tag.
Quiz Progress Bar Please select an answer

Related Tutorial

HTML5 Basic Tutorials - Lesson 8 - Images


What's Next?

The next quiz is all about links.