HTML

Ace your homework & exams now with Quizwiz!

What is the correct HTML tag for the largest heading?

<h1>

Outline the general layout (and tags) of an HTML document

<html> <head> <title>Title of page</title> </head> <body> This is my page. <b> BOLD </b> </body> </html>

What is the correct HTML tag to make a text italic?

<i>

What is the correct HTML for inserting an image?

<img src="image.gif" alt="MyImage" />

What is the correct HTML for making a checkbox?

<input type="checkbox" />

What is the correct HTML for making a text input field?

<input type="text" />

How can you make a list that lists the items with numbers?

<ol>

What is the correct HTML for making a drop-down list?

<select>

Which of these tags are all <table> tags?

<table><tr><td>

What is the correct HTML to left-align the content inside a tablecell?

<td align="left">

What is the correct HTML for making a text area?

<textarea>

How can you make a list that lists the items with bullets?

<ul>

What does HTML stand for?

Hyper Text Markup Language

What is image mapping in HTML?

Making one image link to several pages is called as image mapping. For example, if you have a map of India, then clicking on state can take you to another page and other states.

Explain meta tag in HTML?

Metadata is data (information) about data. The <meta> tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable.

Define URL?

Uniform Resource Locator; An address that specifies the location of a file on the Internet.

What is the correct HTML for creating a hyperlink?

<a href="http://www.w3schools.com">W3Schools</a>

How can you create an e-mail link?

<a href="mailto:xxx@yyy">

How can you open a link in a new browser window?

<a href="url" target="_blank">

Explain anchor tag in HTML?

<a> tag defines an anchor. It can be used to create a link to another document by using the href attribute or to create a bookmark inside a document, by using the name or id attribute.

What is the correct HTML tag to make a text bold?

<b>

What is the correct HTML for inserting a background image?

<body background="background.gif">

What is the preferred way for adding a background color in HTML?

<body style="background-color:yellow">

What is the correct HTML tag for inserting a line break?

<br />

Who is making the Web standards?

The World Wide Web Consortium


Related study sets

EXAM #2 CENGAGE BRIEF HYPOTHETICALS (CHP 11-17)

View Set

Chapter 4: Prenatal Development and Birth—Review

View Set

Table 7-23 Findings in the Pharynx, Palate, and Oral Mucosa

View Set

SCIENCE TERMS ( GENETICS ) WITH EXAMPLES

View Set

Identifying Verbs - Is it a linking, action, or helping verb?

View Set