html Flashcards

1
Q

HTML stands for…

A

Hypertext Markup Language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Inventor of the World Wide Web

A

Sir Tim Berners-Lee

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Delimiter for tags

A

<>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

More strict version of HTML

A

XHTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

XHTML

A

eXtensible HTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Tag structures like are known as _______

A

self-closing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

RSS

A

Really Simple Syndication

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Items of data in a tag that provide additional information to the browser

A

attributes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Syntax for an attribute

A

property=value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Attribute name for creating hyperlinks

A

href

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

URL

A

Uniform Reference Locator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Complete web address for Google

A

http://www.google.com

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Attribute name used to give a name to an object so that it can be accessed using CSS or JavaScript

A

id

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Client-side language used with HTML to give a web page functionality

A

JavaScript

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Server-side language used with HTML to give a web page functionality

A

PHP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Attribute name that specifies a group name that may apply to multiple tags/objects

A

class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Attribute name that lets you apply a CSS style to a particular object

A

style

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Attribute name that lets you display a ‘tooltip’ when a mouse passes over it

A

title

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Tag name that specifies a title for a web page in a browser’s ‘chrome’

A

title

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Complete HTML command that specifies a title on a web page saying My Little Web Page

A

html My Little Web Page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Tells a browser exactly how you would like a web page to be displayed

A

doctype

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Tag name that specifies the ‘dialect’ of a web page (show any special symbols)

A

html <!DOCTYPE>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Browser affiliated with Microsoft

A

Internet Explorer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Browser affiliated with Mozilla

A

Firefox

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Browser affiliated with Apple
Safari
26
Browser affiliated with Google
Chrome
27
Tag name of element that contains the web page content
body
28
Tag name of element that contains 'behind the scenes' information (like metadata) to help a page work according to design intentions
head
29
Comment structure for HTML
<!
30
Tag elements placed inside other tag elements are said to be ___________
nested
31
Highest level tag element in a web page
html
32
Additional data about a document, hidden from the normal user
metadata
33
Unit of measure of elements in a web page
pixel
34
Tag name of element used to embed CSS commands within a web page
style
35
CSS
Cascading Style Sheets
36
Tag name of element used to load an external style sheet
link
37
Attribute for establishing a document's relationship to a page as a style sheet
rel=stylesheet
38
Attribute for specifying a style sheet language as that of CSS
type=text/css
39
Tag name of element used to write JavaScript commands within a page
script
40
Attribute to specify the location of a JavaScript file named 'myscripts.js' that is to be loaded from an external location
src=myscripts.js
41
Base language for Android devices
Java
42
Small piece of software written by a developer that can be embedded in Firefox for additional functionalities
add-on
43
An 'essential' add-on in Firefox that supports web page development and analysis
Web Developer Toolbar
44
Name of the developer who wrote the add-on used with Firefox in the web development classes at TCA
Chris Pederick
45
What does it do?
Sets the width of a web page to 800 pixels
46
Delimiter for multiple attributes within a tag
space
47
Largest heading tag name
html
48
Smallest heading tag name
html
49
Tags that are intended to be 'phased out' at some point in the future are known as _______, and should not be used
deprecated
50
An alternative for the normal bolding tag, which is often custom-styled with CSS
strong
51
Tag name for producing subscripted text
sub
52
Tag name for producing superscripted text
sup
53
Font face and color should only be set by using...
CSS
54
How many color names are available to a designer?
16
55
For customized colors, you need to use _______ color numbers
hexadecimal
56
Hexadecimal syntax for establishing color
#RRGGBB
57
Allowable symbols in hex code
0-9, A-F
58
Hexadecimal is also known as ...
base-16
59
White in hex code:
#FFFFFF
60
Black in hex code:
#000000
61
Short cut for hexcode color: #AA88DD
#A8D
62
Exactly how many colors (shades) are available to a designer (in factored form!)
256x256x256
63
Approximately how many colors are available to a designer?
Over 16 million
64
Primary colors on a traditional computer monitor
red, green, blue
65
Best type of font (as a family) to use for web page text
sans-serif
66
Tag name of element for inserting images in a web page
img
67
Attribute name used to denote the location of a picture file for a web page
src
68
http means
hypertext transfer protocol
69
Using this attribute is strongly recommended for use in case an image cannot load or if the file cannot be found
alt
70
Why is it a good idea to use width and height attributes for images (with ORIGINAL DIMENSIONS!) when placing an image in a web page?
To ensure that the page layout is correctly aligned even before the page is loaded; can speed the overall loading time for the page
71
The tag is known as the _______ tag
anchor
72
The 'C' in Crap (from a design perspective) stands for ...
contrast
73
The 'R' in cRap (from a design perspective) stands for ...
repetition
74
The 'A' in crAp (from a design perspective) stands for...
alignment
75
The 'P' in craP (from a design perspective) stands for...
proximity
76
The attribute used to specify the location of a hyperlink
href
77
Write a complete command for a hyperlink to yahoo, with text: I love to YAHOO! and a screen tip of Let's yahoo now
I love to YAHOO!
78
Attribute used to create internal hyperlinks
name
79
Write a complete command to create an internal hyperlink to a location called 'top' within a given page, with text: 'Top of page'
Top of page
80
Why should you NEVER underline text in a web page for the purposes of emphasis?
Could be mistaken for a hyperlink
81
Extension for a web page document
html
82
Alternative, shorter extension for a web page document
.htm
83
Name(s) of the '#' symbol
hash, number symbol, pound symbol, octothorp
84
Fancy name of the '&' symbol
ampersand
85
W3C
World Wide Web Consortium
86
First place (besides Google) to look up basic information about web related issues
http://www.w3schools.com
87
HTML structure best used for displaying data, but prior to CSS often used (misused) for positioning of web elements within a page
table
88
Attribute name specifying the number of pixels of space between a cell well and its content
cellpadding
89
Attribute name specifying the number of pixels of space between adacent cells and/or their container
cellspacing
90
Attribute name used to put a caption on a table
caption
91
Attribute name for creating a table row
tr
92
Attribute name for creating a table column
td
93
Attribute name for creating a table heading
th
94
Two type of lists in HTML
unordered, ordered
95
Tag name for a bulleted list
ul
96
Tag name for a sequential list
ol
97
Attribute name to specify the beginning number for a sequential list
start
98
Attribute name to specify various kinds of lists: letters, numbers, Roman numerals, etc
type
99
Tag name within a list that specifies individual entries
li
100
Tag name for a special type of list often used with definitions
dl
101
Two elements types nested within a definition list
dt and dd
102
dt
definition term
103
dd
definition (definition)
104
Language responsible for web page structure
XHTML
105
Language responsible for aesthetics of a web page
CSS
106
Language responsible for web page behavior
JavaScript
107
The basic top-level web page structure responsible for user interaction with a page with respect to entering information
form
108
Attribute responsible for determining how data from a form should be handled
method
109
Form submission technique where information is transmitted via the URL
GET
110
Form submission technique where information is transmitted via an array
POST
111
Attribute determining what should be done when a form is submitted
action
112
Dominant tag name used in a form for creating GUI elements for a user to interact with
input
113
GUI
Graphical User Interface
114
Attribute that determines the nature of a GUI element
type
115
Attribute value that creates a text-input box
text
116
Attribute value that creates a text-input box with obscured letters as a user types
password
117
Attribute value that creates round GUI elements where only one of the elements can be active at a time
radio
118
Attribute value that creates squarish GUI elements where multiple selections may be made at one time
checkbox
119
Attribute value for a GUI element that renders it invisible to the user
hidden
120
Tag fpr creating a multiline area where information may be entered in a freeform style
textarea
121
Drop-down menus are created with this tag
select
122
These tags are located inside a drop-down menu to create the various entries of a menu
option
123
Complete attribute showing a menu item that should be shown as selected in the menu as it is first loaded in the web page (the default choice)
selected=selected
124
A tag that should not be used for submitting forms because of misinterpretations by IE
button
125
IE
Internet Explorer
126
Tag often used with radio and check boxes so users can see what they are choosing
label
127
Important design considerations for most GUI elements
alignment, proximity
128
Proximity
Things that functionally work with one another are in the same vicinity with each other (like a sofa-coffee table combo)
129
Tag used to combine elements into a group in a vertical stacking type arrangement
div
130
Tag used to group elements into a arrangement that flows with the text of a document
span
131
Tag that would allow information placed within it to look just as it was typed in the tag body
pre
132
Tag that allows you to drop a frame of any width or height anywhere in a document as if it were an image
iframe
133
Replaces the applet tag in newer versions of (X)HTML
object
134
Expected year when HTML5 is ready (supported by most browsers with most functionalities)
2015 per 3/8/12 as specified by
135
Store and serve web pages
Web servers
136
Renders a web page's content
browser
137
for example: Hello World
element
138
Three parts of an HTML element
opening tag, content, closing tag
139
Exceptions to the rule that elements have an opening and closing tag (yet commonly used tags)
img, br
140
Tag that holds the information seen in a browser
body
141
Most ______ (tabs, returns, spaces) are ignored by the browser
whitespace
142
Makes your web page understandable to you in the future and to others who what to build on it
comments
143
Must not appear in ids
spaces
144
Image type that supports transparency with many colors
png
145
Image type that supports transparency with limited colors
gif
146
Common image type for images directly from photographs (give both spellings)
jpg, jpeg
147
Navigation scheme to go to a parent folder called 'lounge'
../lounge
148
Navigation scheme to go to a sub folder called 'beverages'
beverages/
149
DOM
Document Object Model
150
The basic structure of web pages that supports the use of CSS and JavaScript
DOM
151
Image that is not displaying for some reason
broken image
152
A folder called 'fruit' contains two separate folders: 'apples' and 'pears' . Apples and pears are...
siblings
153
The content of the element is the ______ for the link
label
154
.. means ____________
parent folder
155
Don't use _____ when naming files and folders for your web site
spaces
156
dog vs. Dog demonstrates ________
case-sensitivity
157
myLittleAttributeName demonstrates _____
camel-case
158
href stands for...
hypertext reference
159
Everything between and is ________
clickable
160
Top folder of your web site
root
161
A subfolder is also called a _______ of the folder it is in
child
162
Geeky-looking computer symbols for special (reserved) symbols like '<' or '&'
HTML entity
163
non-breaking space HTML entity
164
The trademark symbol can be made with the code ™ which is an entity ______ or by ™ which is an entity ______ .
name .... number
165
Variables/attributes which are named according to their function (ex: class=warning) are said to be ...
self-documenting
166
If HTML entity names are self-documenting (in most cases) why are HTML entity numbers often better to use (even though harder to remember)
Browsers may not support all entity names (the support for entity numbers is very good)
167
An element often used for long quotations which will force the quote to 'break out' of the document flow
I pledge allegiance...with liberty and justice for all
168
An element often used for short quotations that should not 'break out' of the document flow
html Spaces are evil
169
Before you launch a site you should always...
...check it's operation in the 4 major browsers: IE, Firefox, Chrome, Safari
170
Elements that 'stand on their own' or 'break out' of the flow which tend to stack vertically in a page
block
171
Elements that 'go with the flow' of a page
inline
172
is an example of an ____________ element
empty
173
Horizontal menu bars are often ______ that have been ______ by ______ making them _______
list items ... styled .... CSS.... inline
174
is an example of __________ __________
improper nesting
175
All symbols in human kind that are shown on a computer screen have an assigned __________
unicode
176
ASCII
American Standard Code for Information Interchange
177
Character codes may be found at..
http://www.unicode.org
178
Tag used to draw to draw a horizontal line on a web page
hr
179
hr
horizontal rule
180
A unique name used to locate your site
domain name
181
Centralized authority to make sure only one person at a time uses a given domain name
ICANN
182
ICANN
Internet Corporation for Assigned Names and Numbers
183
An agree-upon technique for transferring hypertext documents around the Web
Hyper Text Transfer Protocol
184
Global address that can be used to locate anything on the Web
URL
185
Most common default name for the 'home page' of a static web site
index.html
186
Lesser-used default name for the home page of a static web site
default.htm
187
Web pages that simply convey information without user interactivity
static
188
Web pages that can do things for a user besides simply convey information, that normally require some level of programming
dynamic
189
Common mistake made by even professional web developers when using web-authoring software that limits a search engine's ability to find a site
Forgetting to create a meaningful title element in the head of the document
190
With virtually no exceptions, divisions and spans should have ______ attributes with _______ names without ______
id ... self-documenting ... spaces
191
With virtually no exceptions, images should have _____ attributes to enhance usability for users with visual or audial impairments
alt
192
With virtually no exceptions, hyperlinks should have _____ attributes to reduce _______ and to provide additional _______ about where the link goes
title .... visual clutter... information
193
True or false: The ordering of attributes is important
false
194
List 4 alternatives to an attribute you would like to name: Holy Smoke but without the space. The most important thing is to be ________ in your naming technique
holySmoke, holysmoke, holy-smoke, holy_smoke
195
PDF
Portable Document Format
196
Web pages should go through a ________ process at ________ before release, but sadly few bother with this effort.
validation .... http://validator.w3.org/
197
Why should pages be validated? (5 Reasons)
Validation as a debugging tool
198
CSS pages can be validated at....
http://jigsaw.w3.org/css-validator/
199
FTP
File Transfer Protocol
200
Common means of transferring your web pages and content to a server
FTP
201
Attribute used to open a link in another browser window, but pages with this ability may not ______ and can be _________ for users on a variety of devices and alternative browsers
target ... validate ... problematic