| Terms |
Definitions |
|
Links
|
<a href="ex.html">example</a>
|
|
<b>
|
Defines bold text
|
|
<script>
|
Defines a script
|
|
<ins>
|
Defines inserted text
|
|
<abbr>
|
Defines an abbreviation
|
|
html
|
hyper-text markup language
|
|
URL
|
uniform resource locator
|
|
<button>
|
Defines a push button
|
|
<html>
|
Defines an html document
|
|
<tr>
|
Defines a table row
|
|
<tbody>
|
Defines a table body
|
|
<dd>
|
Defines a definition description
|
|
<center>
|
Deprecated. Defines centered text
|
|
<body> </body>
|
body of document.
|
|
<br>
|
Inserts a single line break
|
|
<col>
|
Defines attributes for table columns
|
|
Heading tags
|
<h1> </h1
goes through h6
|
|
Image in another folder
|
<a href="bev/ex.html>example</a>
|
|
what are hyperlinks?
|
links webpages together
|
|
<font>
|
Deprecated. Defines text font, size, and color
|
|
<iframe>
|
Defines an inline sub window (frame)
|
|
The _____ attribute specifies the color of the top and left edges of a table.
|
bordercolorlight
|
|
Authors may specify [what] style sheets that user agents must apply in addition to any alternate style sheet.
|
persistent
|
|
[what] is a variable-length character encoding for Unicode which is backward compatible with ASCII.
|
UTF-8
|
|
Which element help divide content?
|
<div> </div>
|
|
<option>
|
Defines an option in a drop-down list
|
|
ol
|
ordered list:order can be 1,2,3 or i,ii,iii, etc.
|
|
storyboard
|
a rough sketch showing the desired appearance of your final Web page...it shows the elements you want to include and how you want them arranged on the page.
|
|
What is the attribute of the <colgroup> tag that defines the default number of columns in the group?
|
span
|
|
What control type of the <input> element is used to create a graphical button that submits a form when activated?
|
image
|
|
What is the attribute of the <frame> and <iframe> tags that defines the request frame borders?
|
frameborder
|
|
What does the <ul> tag define?
|
unordered list
|
|
True or false: The <title> tag is allowed in the <head> element of an HTML document.
|
true
|
|
What does the <!-- --> tag define?
|
comment
|
|
True or false: HTML tags are case-sensitive, so <b> is not the same as <B>.
|
false
|
|
The three possible values of the valuetype attribute of the <param> element are "data", [what], and "object".
|
"ref"
|
|
Which HTML 4.01 DTD includes elements and attributes that have not been deprecated and do not appear in framesets?
|
strict
|
|
What is the attribute of the <textarea> tag that prohibits changes to the control?
|
readonly
|
|
What is the attribute of the <head> tag that defines the named dictionary of meta info?
|
profile
|
|
What is the attribute of the <input> and <object> tags that defines the control name submitted as part of a form?
|
name
|
|
What javascript command extracts the current day of the month from the Now Variable , storing it in a variable named "tdate".
|
var Tdate=Now.getDate();
|
|
How do I create a hyperlink?
|
<pre><a href="linktext">Words</a></pre>
|
|
<h1> to <h6>
|
Defines header 1 to header 6
|
|
hyperlinks
|
text or graphics that are formatted so that users move from one file to another on the World Wide Web by clicking on them
|
|
What element is provided as a more general solution for including images in an HTML document than the <img> element?
|
<object>
|
|
What value of media descriptor is used to show that a document is intended for portable, small-screen devices?
|
handheld
|
|
What is the HTML character entity name for the thin space character?
|
&thinsp;
|
|
What is the URI scheme used to identify an SMTP e-mail address and sometimes the default content of an e-mail?
|
mailto
|
|
What is the attribute of some HTML tags that defines the document-wide unique identifier?
|
id
|
|
True or false: HTML tables cannot be contained inside of other HTML tables.
|
false
|
|
True or false: HTML elements are the same as HTML tags; they are just two different words for the same concept.
|
false
|
|
True or false: Each additional line of a comment (which is enclosed by a <!-- and --> pair) should begin with a string of hyphens (--).
|
false
|
|
True or false: If a browser cannot find a named anchor when it jumps to a page, an error occurs.
|
false
|
|
True or false: The <area> tag is empty, and is forbidden to have an end tag.
|
true
|
|
It is only possible to define a server-side image map for the [what] and <input> elements.
|
<img>
|
|
HTML documents are plain text files made up of [what].
|
HTML elements
|
|
HTML tag
|
<html> tells computer it is a html ducument
|
|
Che comandi contiene un html?
|
Formattazione, inserimento parti multimediali, link ipertestuali
|
|
syntax of html element
|
An HTML element starts with a start tag / opening tag
An HTML element ends with an end tag / closing tag
The element content is everything between the start and the end tag
Some HTML elements have empty content
Empty elements are closed in the start tag
Most HTML elements can have attributes
|
|
Web browser
|
a software program that allows you to view Web pages.
|
|
What does the acronym HTML stand for?
|
hypertext markup language
|
|
True or false: Frames can be used to separate an HTML page into multiple independent documents.
|
true
|
|
When the valuetype of a param is equal to [what], it means that the param's value attribute is an identifier that refers to an object declaration in the same document.
|
"object"
|
|
The acronym SGML stands for [what].
|
Standard Generalized Markup Language
|
|
What HTML tag is used to define small text style?
|
<small>
|
|
What HTML tag is used to indicate a citation or reference to other sources?
|
<cite>
|
|
What HTML tag is used to define an ordered list?
|
<ol>
|
|
What HTML tag is used to define a table data cell?
|
<td>
|
|
What is another way of writing the <br> tag to show that it is closed, even though there is no </br> closing tag?
|
<br />
|
|
<h1> element
|
consists of the enclosing tags and the content in between
|
|
what does html stand for?
|
hyper text mark up language
|
|
How do I link an external CSS?
|
<pre><LINK rel="stylesheet" type="text/css" href="externalcss.css"></pre>
|
|
How are attribute values expressed?
|
Attribute values should always be enclosed in quotes.
|
|
head section (of a Web page)
|
contains identifying and descriptive information about the web page
|
|
A [what] is a computer or its computer program that is responsible for accepting HTTP requests from web browsers and serving up web pages.
|
web server
|
|
Before being acquired by Adobe in 2005, the Adobe Flash technologies were known as [what].
|
Shockwave Flash (Macromedia Flash)
|
|
How many numbered heading tags are available? For example, <h1>, <h2> ...?
|
6 (<h1> through <h6>)
|
|
Which tag contains the document itsel, not the title
|
<body> The Document </body>
|
|
What is the syntax for attributes?
|
Attributes come in name/value pairs like: name="value".
|
|
The first part of the URI syntax is the [what], such as http, ftp, mailto, etc.
|
scheme (scheme name)
|
|
Which tag defines a checkbox in an HTML 4.01 form?
|
<input type = "checkbox"/>
|
|
What are the attributes for a option box?
|
<pre><Select name="Title" size="1"> <OPTION></OPTION></pre>
|
|
What else are HTML documents called?
|
HTML documents are also called web pages.
|
|
What is the common HTML mistake demonstrated in this example: <img src="abc123.png">
|
missing required attribute (should be <img src="abc123.png" alt="alternate description">
|
|
What is a program loop
|
A program loop is a set of instructions that is executed repeatedly. There are two types of loops: loops that repeat a set of number of times before quitting ( for loops ) and loops that repeast until a certain condition is met ( while Loops.)
|
|
Does a browser display HTML tags?
|
A browser does not display the HTML tags, but uses the tags to interpret the content of the page.
|
|
The second tag in an HTML tag pair is called the [what].
|
end tag (close tag)
|
|
how do you get it to ignore the white space if you want some crazy spacing in text content
|
<pre> CRAZY CONTENT </pre>
|
|
What is meant the the term HTML element?
|
An element is anything within the start tag and end tag.
|
|
What keyword is used in an HTML tag for a paragraph?
|
HTML paragraphs are defined with the "p" tag.
|
|
What does the middle part of a character entity consist of?
|
an entity name, or a # and an entity number
|