NEW
Font size
WorksheetsStructure of HTML page Friday October 9 2020
Total questions: 13
Worksheet time: 7mins
Coding Language used to build webpages
HMTL
HTML
HLTM
JavaScript
<!DOCTYPE html> says we are using what version of HTML
5
6
7
8
Starts and ends the web page program.
<head>
<title>
<html>
<hltm>
Defines the title of the webpage and the text on the browser tab.
<title>
<head>
<html>
<body>
Where the actual content of the document goes and is where most of your html tags will go.
<title></title>
<head></head>
<html></html>
<body></body>
A tree is
the way to identify tags
the structure of the html document
where most of the content goes
where you can add special tags
The <head> tag and the <body> tag are inside the <html> tag
True
False
The <title> tag is inside the <head> tag
True
False
<!DOCTYPE html> Is not an html tag; it tells the browser which version of HTML we are using.
True
False
The <html> </html> contains the entire web page program. All elements of the webpage are inside of the <html> </html> tags.
True
False
Tags can go inside of other tags.
True
False
The structure of an HTML document is called a _________ structure.
tree
sturdy
complicated
simple
Which of the following is an example of metadata about a webpage?
The title of the webpage
The body of the webpage
An <h1> tag
All of the above
