CIS 258 Quiz 1

The <br> tag inserts a single line break.

True

Attribute values should always be enclosed in quotes.

True

The purpose of a web browser (like Internet Explorer or Firefox) is to read HTML documents and display them as web pages

True

Tables are defined with the <table> tag.

True

When a web document or file is created on the local site it must be published to the server before it can be viewed remotely.

True

HTML stands for hypertext management language

False

The body element (tag) contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.

True

<h4>This table has no borders:</h4> <table> <tr> <td>100</td> </tr> <tr> <td>400</td> </tr> </table>

True

Internet Explorer is a Microsoft browser.

True

HTML elements can have attributes. Attributes provide additional information about an element.

True

The <font> tag specifies the font face, font size, and font color of text.

True

When a small red x box appears in a web page, either the image file does not exist, the tag file reference is incorrect or the image path is wrong.

True

Use the <br /> tag if you want a line break (a new line) without starting a new paragraph.

True

HTML formatting commands are called:A. commands B. instructors C. tags D. tips

C. tags

<b>This text is bold</b>

True

HTML tags are not case sensitive: <P> means the same as <p>. Many web sites use uppercase HTML tags.

True

<a href="http://www.google.com/">Google</a> This is a link to a website on the World Wide Web.

True

W3schools calls the html commands elements.

True

HTML images are defined with the <img> tag.

True

What tag would you use to position content in the middle of a line. A. center B. middle C. table D. tr

A. Center

This code is correct. <body "bgcolor=yellow">

False

•HTML tags are keywords surrounded by angle brackets like <html>

True

Most browsers will display an HTML paragraph correctly even if you forget the end tag.

True

The tr element defines a table row, and the td element defines a table cell.

True

Most HTML elements can be nested (can contain other HTML elements).

True