What is HTML
1 / 99
Term:
Definition:
Show example sentence
Show hint
Keyboard Shortcuts
  • Previous
  • Next
  • F Flip card

Complete list of Terms and Definitions for What is HTML

Terms Definitions
Italics <em> </em>
<!--...--> Defines a comment
<del> Defines deleted text
<a> Defines an anchor
<form> Defines a form 
<big> Defines big text
<img> Defines an image
html hyper-text markup language
<caption> Defines a table caption
<tbody> Defines a table body
<ol> Defines an ordered list
<button> Defines a push button
<td> Defines a table cell
TCP/IP TRANSMISSION CONTROL PROTOCOL INTERNET PROTOCOL GOVERNS HOW COMPUTERS AND NETWORKS TALK TO EACH OTHER.
<s> Deprecated. Defines strikethrough text
<tfoot> Defines a table footer
<br> Inserts a single line break
<frameset> Defines a set of frames
___________ are block-level elements often used to control other page elements. Divisions
&lt;a&gt; to link to another page
What are Hyperlinks? Links webpages together.
<legend> Defines a title in a fieldset
<label> Defines a label for a form control
The _____ attribute specifies the table border color. bordercolor
True or false: Character entity references are case-sensitive, so that &amp;Aring; refers to a different character than &amp;aring;. true
What does the &lt;a&gt; tag define? anchor
What does the &lt;img&gt; tag define? image
Either the &lt;iframe&gt; element or [what] element can be used to embed a subdocument into a primary HTML document. &lt;object&gt;
&lt;center&gt; &lt;/center&gt; begin centering and end centering.
<area> Defines an area inside an image map
framerow creates a horizontal frame across the browser window
What is the attribute of the &lt;col&gt; tag that defines the column width specification? width
What is the attribute of the &lt;del&gt; and &lt;ins&gt; tags that defines the date and time of the change? datetime
What is the attribute of the &lt;button&gt; and &lt;textarea&gt; elements that defines their control name? name
What control type of the &lt;input&gt; element is used to create a single-line text input control? text
The Internet media type, or &quot;MIME type&quot;, for CSS documents is [what]. text/css
True or false: The &lt;iframe&gt; tag is empty, and is forbidden to have an end tag. false
The [what] element is intended to provide a short summary of a table's purpose. &lt;caption&gt;
What is the attribute of the &lt;table&gt; tag that defines the spacing within cells? cellpadding
What is the attribute of the &lt;select&gt; tag that defines the number of rows that should be visible at the same time? size
A destination anchor in an HTML document may be specified either by the name attribute of the [what] element or the id attribute of any element. &lt;a&gt;
Authors may specify a number of mutually exclusive style sheets called [what] style sheets, so that users may select from them depending on their preferences. alternate
What is the attribute of the &lt;option&gt; tag that can be used to specify the initial value of the control as something different than the contents of the &lt;option&gt; element? value
What is the attribute of the &lt;img&gt; tag that defines the URI of the image to embed? src
What is the attribute of the &lt;input&gt; tag that defines what kind of widget is needed? type
HTML elements are classified as either [what] (those that can appear in the &lt;body&gt;) or inline (also known as &quot;text level&quot;). block-level
What is the attribute of the &lt;object&gt; tag that defines the message that a user agent may render while loading the object's implementation and data? standby
What JavaScript command writes the text &quot;Avalon Pages&quot; marked as an h1 heading to your Web Pages? document.write&lt;h1&gt;Avalon Books&lt;/h1&gt;&quot;);
How do I create a hyperlink? <pre><a href="linktext">Words</a></pre>
page title the Web page information that appears in the title bar of the web browser; does not appear on the Web page
What value of media descriptor is used to show that a document is intended for tactile feedback devices? braille
[what] is a numeral system with a radix, or base, of 16, which typically uses the digits 0-9 and letters A through F to represent the values 0 through 15. hexadecimal
What is the HTML character entity name for the ' (apostrophe)? &amp;apos;
What is the attribute of the &lt;a&gt; and &lt;link&gt; tags that defines the base language of the resource designated by href? hreflang
What is the attribute of the &lt;a&gt; tag that defines the shape of a region for use with client-side image maps? shape
What HTML tag is used to define teletype or monospaced text style? &lt;tt&gt;
What is the attribute of some HTML tags that defines the horizontal alignment? align
True or false: It is possible to supply object data inline rather than loading it from an external resource. false
A &lt;dt&gt; element can only be used inside the [what] element. &lt;dl&gt;
True or false: The &lt;hr&gt; tag is empty, and is forbidden to have an end tag. true
True or false: The align attribute for any HTML tag accepts exactly three values: left, center, and right. false
True or false: The &lt;u&gt; tag is deprecated by W3C and should not be used. true
True or false: The contents of the &lt;title&gt; element can contain character entities such as &amp;eacute; and &amp;amp;. true
The acronym FTP stands for [what]. File Transfer Protocol
True or false: The W3C recommends the use of lower-case HTML tags, such as &lt;b&gt; not &lt;B&gt;. true
what is a browser? world wide web;example internet explorer
Com'è organizzato internet? Un dominio per ogni nazione, sottodomini per ogni nazioni.
<!--...-->    ex.   <!--what is this?--> this is a comment tag
meta tags add information to a Web page that helps a search engine identify and describe your page content
What HTML tag is used to apply an external stylesheet to an HTML document? &lt;link&gt;
What HTML tag is used to define a fieldset caption? &lt;legend&gt;
What is the URI scheme used to address files on local or network file systems? file
What HTML tag is used to define script statements? &lt;script&gt;
What HTML tag is used to indicate bold text style? &lt;b&gt;
What HTML tag is used to indicate a sample program output, scripts, etc.? &lt;samp&gt;
What HTML tag is used to define an option group? &lt;optgroup&gt;
What HTML tag is used to define a paragraph? &lt;p&gt;
if the current month is sept what is the value returned by the getMonth() method? 8
HEAD Section Section of a web page that contains elements describing the page that do not display.
Cosa contengono i tag? Parametri associati a valori, che seguono il nome del comando, dopo l'= tra virgolette.
What are nested HTML elements? Nested HTML elements are elements which contain other HTML elements between their own start and end tags.
An attribute length value can be specified as a number of pixels, percentage of available space, or [what]. integer denoting relative length
[what] are web applications that have the features and functionality of traditional desktop applications. rich Internet applications (RIAs)
In digital imaging, a [what] is the smallest piece of information in an image, normally arranged in a regular 2-D grid, and often represented using dots or squares. pixel (picture element)
How is a form defined in HTML 4.01? &lt;form action=&quot;&quot;&gt; &lt;/form&gt;
&lt;font&gt; &lt;/font&gt; begin font style and size and end font style and size.
Do all HTML elements have content? Some HTML elements have empty content.
[what] is the capability of a computer system to correctly display bi-directional text. bidirectional script support (BiDi)
A [what] is the formal definition for a particular version of HTML that defines constraints on the structure of a valid HTML document of that version. Document Type Definition (DTD)
Which tag defines a Password Field in an HTML 4.01 form? &lt;input type = &quot;password&quot;/&gt;
What are the attributes for a option box? <Select name="Title" size="1"> <OPTION></OPTION>
You specify external style in ____ a style sheet in a separate file
[what] is a group of interrelated web development techniques used for creating interactive web applications or rich Internet applications. Ajax (Asynchronous JavaScript and XML)
Header tag (what sizes and where does it go) &lt;h#&gt; text &lt;/h&gt; # = 1-6
How does HTML use markup tags? HTML uses markup tags to describe web pages.
What is the common HTML mistake demonstrated in this example: &lt;a href=http://www.example.com&gt;sample text&lt;/a&gt; missing quote marks (should be &lt;a href=&quot;http://www.example.com&quot;&gt;sample text&lt;/a&gt;)
Qual è la funzione del browser? Scaricare i fles dal computer remoto e visualizzare un testo html secondo le sue indicazioni.
Why should you place your Javascript code within your HTML comment tag? To prevent older browsers that do not support Javascript from displaying the Javascripts commands on the web page.
An external style sheet is formatted just like an embedded style sheet, except that it contains _____. no opening tag and no closing tag