True/False
Indicate whether the sentence or statement is true
or false.
|
|
1.
|
Some
HTML elements have both a start and an end tag; some HTML elements have just the end
tag.
|
|
2.
|
Information that describes the HTML documents purpose is defined in the head
section.
|
|
3.
|
All
HTML elements must define at least one attribute.
|
|
4.
|
The
correct usage of HTML tags is to provide a space after the left hand angle bracket as in < body>.
|
|
5.
|
HTML
files can be created and modified using a simple text editor.
|
|
6.
|
The
World Wide Web Consortium, or W3C, oversees the development of Web technology
standards.
|
|
7.
|
An
HTML element such as <body> is a parent element to any content defined inside it.
|
|
8.
|
The
process of assembling and formatting an HTML document contents for the browser window is called
parsing or rendering.
|
|
9.
|
HTML
tags which are deprecated include <p>, <table>, <form>, and other
non-presentational tags.
|
|
10.
|
When
an HTML elements use is no longer recommended by the W3C, the element is said to be
deprecated.
|
|
11.
|
The
<meta> element does not render any content in the browser. It is used to provide
additional information about the content to the browser.
|
|
12.
|
Each
HTML document should have a <window> element defined in the head element to show the text
appearing as the tab window title in the browser.
|
|
13.
|
Static HTML refers to a fixed HTML page not updated in any way by the web
server.
|
|
14.
|
If
your HTML document needs to show the current date and time in the browser window, you would likely
need to provide some dynamic HTML to the document.
|
|
15.
|
HTML
comments are written by the person who writes the HTML page to show information such as the
authors name, page creation date, and so on.
|
|
16.
|
The
recommended structure of HTML content is this: <html> <head>
</head> <body> </body> </html>.
|
|
17.
|
If
you want the browser to show a line break in your HTML content, then insert a blank line in the
HTML.
|
|
18.
|
Line
breaks can be made to appear in the browser by inserting the HTML element <break>.
|
|
19.
|
Block
elements in HTML always appear on a new line.
|
|
20.
|
The
following are all block elements in HTML: <p>, <h1>, <table>,
<form>, <div>, <ol>.
|