1/29
A set of 30 flashcards covering the definitions, tags, attributes, and structures of HTML as taught in the Level 2 Basic Computer Science syllabus, Chapter 6.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
What does HTML stand for?
HyperText Markup Language.
What is the function of HTML?
Used to build and organize the content of a website.
What is meant by HTML tags?
Instructions used to determine the structure of website content.
Which symbol is used to write HTML tags?
The < > signs.
Which basic tag marks an HTML document?
What is the function of the
tag?To store information about the HTML document.
What is the function of the
To determine the title displayed on the web browser tab.
What is the function of the
tag?To place the content that is displayed on the website.
Which tag is used to produce the main heading?
How many heading levels are there in HTML?
6 levels, which are
Which heading is the largest?
Which heading is the smallest?
Which tag is used to create a paragraph?
Which tag is used to move to a new line?
Which tag is used to create a horizontal line?
Which tag is used to display an image?
Which attribute is used to determine the location of an image?
src
What is the function of the alt attribute on an image?
To provide alternative text if the image cannot be displayed.
Which attribute determines the address of a link?
href
What is meant by a hyperlink?
A link that takes the user to another page or resource.
Which tag produces an unordered list?
Which tag produces a numbered list?
Which tag is used for each item in a list?
Which tag is used to build a table?
What is the
Used to produce a table row.
What is the
Used to produce a table data cell.
What is the
Used to produce a table heading cell.
What is the difference between an opening tag and a closing tag?
A closing tag has a / symbol, for example
.Why must the HTML structure be written correctly?
So that the website can be displayed and function correctly.