問題一覧
1
A person who was invented html. He is a physicist at the CERN research institute in Switzerland.
Tim Berners-Lee
2
Means a text that contains references (links) to other text that viewers can access immediately
Hypertext
3
The biggest upgrade of the language was introduction of ________in 2014
HTML5
4
Elements take up the full available space and always start a new line in the document
Block-level
5
Only take up as much space as they need and don't start a new line on the page
Inline Elements
6
Tags is the highest level element that encloses every HTML page
<html> </html>
7
Tag holds meta information such as the pages title and charset
<head> </head>
8
Tag encloses all the content that appears on the page
<body> </body>
9
Are bigger content sections that typically contains several paragraphs, images, sometimes blackquotes, and other smaller elements
divisions
10
Is responsible for styling such as background, colors, layout, spacing, and animations.
CSS
11
Let's you add dynamic functionality such as sliders, pop-ups, and photo galleries
JavaScript
12
The purpose of a _____ (Chrome, Edge, Firefox, Safari) is to read HTML documents and display them correctly
web browser
13
Specifies the protocol the browser follows to request the file
protocol
14
Points to the general website such as (www.son.com) where the file resides
domain
15
Names the sequence of folders through which you must navigate to get to a specific file
path
16
Specifies which file in a directory pass the browser accesses
filename
17
Is the language used to write web pages which consists of codes or tags embedded in the text of a document
HTML (Hypertext Markup Language)
18
Are codes in an HTML document which the browser reads and then interprets for subsequent display to a reader
tags
19
Elements specify that the enclosed text should be displayed in boldface
Bold <B> </B>
20
Elements specifies that the enclosed text should be displayed underlined
Underlined <U> </U>
21
Elements specifies that the enclosed text should be italicized
Italic <I> </I>
22
Can be used to control how browsers render text
line break tag <BR>
23
Produces a horizontal line the width of the browser window
horizontal rule <HR>
24
Typically is a bulleted list of items. this is probably the most common type of list on the web
Unordered list
25
Is formatted exactly the same as an unordered list, except that <OL> tags are used instead of <UL>
Ordered list
26
Tag is used to incorporate graphics (typically icons or pictures) into an HTML document
<IMG>
27
Tells the browser where the image is physically stored so that it can retrieve and display it
image source tag <SRC=>
28
Is a method of hypertext linking different parts of an image with the use of pixel coordinates to denote the areas
image mapping
29
Specifies the thickness of the border around the table. When using the table to control a page's layout, the border is usually set to zero.
"BORDER="
30
Define spacing within cells
"CELLPADDING="
31
Define spacing between cells
"CELLSPACING="
32
Specifies the width of the table; typically given as a percentage of the total browser windows space available
"WIDTH="
33
Either left center or right
"ALIGN="
34
Either top middle or bottom
"VALIGN="
35
Sets the background color of a table
"BGCOLOR="
36
Specifies the width of a row; typically given as a percentage of the total space available
"WIDTH="
37
Allow a browser window to be divided into multiple sections, each with an independent HTML page loaded inside it, capable of interacting with one another.
frames
38
The absences or presence of this tag determines whether a user can resize frames as they appear on their monitor
NORESIZE
39
Defines the name of a frame, which is useful for keeping track of frames, as well as for targeting links between pages
NAME="x"
40
Can be manipulated by including either the RIGHT, LEFT or CENTER
Paragraph alignment
41
Defines an unordered list
<UL>
42
Defines an ordered list
<ol>
43
Defines a list item
<li>
44
Defines a description list
<dl>
45
Defines a term in a description list
<dt>
46
Describes the term and description list
<dd>
47
Sets the least item marker to a bullet (default)
disc
48
Sets the list item marker to a circle
circle
49
Sets the list item marker to a square
square
50
The list items will not be marked
none