WorksheetsHTML Introduction
Total questions: 10
Worksheet time: 5mins
HTML stands for
Hyper Text Making Language
Hyper Text Markup Language
Hyper App Coding Language
Hyper Web Coding Language
HTML is the standard markup language for
Create apps
Creating Search engines
Creating Web pages
Creating Games
HTML describes
The style of the web page
The structure of the web page
The script of the web page
The _______________ declaration defines this document to be HTML5
<!DOCTYPE html>
<html>
<head>
<title>
HTML consists of a series of
Elements
Titles
Documents
Links
What is an HTML Element?
Everything from the start tag to the content
Everything from the start tag to the finishing tag
Only the start tag and end tag
None of the answers is correct
HTML tags are surrounded by __________.
<angle brackets>
(round brackets)
[square brackets]
(round brackets) and [square brackets]
The first tag in a pair is the start tag, the second tag is the __________.
new tag
end tag
last tag
Finishing tag
The end tag is written like the start tag, but with a forward slash inserted before the tag name. Which is the following is an example of a correct end tag?
<p>
<p/>
</p>
</p/>
