Digital Media Final Ch Test

0.0(0)
studied byStudied by 6 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/55

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

56 Terms

1
New cards

Define web page

document created using HTML

2
New cards

What is HTML stand for

hyper text mark up language

3
New cards

define html document

text file (can be created using text editor [Adobe Dreamviewer])

4
New cards

define web browser

converts HTML code into a readable format (at client side)

5
New cards

What does XHTML stand for

extensive hypertext markup language (more complex than HTML)

6
New cards

What does CSS stand for

cascading style sheets (used to add styles, graphics, tables, colors, etc to the page)

7
New cards

What is java script

scripting language for webpages that created interactive experiences (popups, cookies, etc)

8
New cards

what is url

uniform resource locator; it identifies a particular file onto the server or its location on the internet.

9
New cards

domain name

10
New cards

older directory

11
New cards

document (webpage)

12
New cards

What is HTTP stand for?

hyper text transfer protocol

13
New cards

What is HTML5?

latest version of of HTML, number of video tags

14
New cards

Define HTML tags

specialized codes which tells browser about format of data

15
New cards

Computers were invented in what year

1940

16
New cards

Ink 1950 what happened?

cold war

17
New cards

In 1969 what happened?

the internet

18
New cards

The internet is a physical network meaning what?

It has wires, servers, computers, hardware

19
New cards

______________ is used to access resources located over the internet

logical interface

20
New cards

OS provides what?

Interface to access hardware

21
New cards

What is paargraph?

<p></p>

22
New cards

What is break?

<br>

23
New cards

What is heading?

<h1></h1>

24
New cards

What is bold?

<b></b> or <strong></strong>

25
New cards

What are italics?

<i></i> or <em></em>

26
New cards

Ordered list

<ol></ol>

27
New cards

Unordered list

<ul></ul>

28
New cards

List item

<li></li>

29
New cards

What is href?

General attribute

30
New cards

Table

<table></table>

31
New cards

table row

<tr></tr>

32
New cards

table data

<td></td>

33
New cards

The _________ tag is used to create a line break (to force a new line without starting a new paragraph. By default, the line created using this tag has ____-line spacing.

<br/>; single

34
New cards

Fill in the blanks for the HTML code below to create a link to your favorite Web site.

Use a valid URL.

<___ ___ = "___">My Favorite Web site<___>

<a href = "http://www.google.com">My Favorite Web site</a>

35
New cards

Fill in the blanks for the HTML code below to embed an image called logo.jpg on a Web page. Suppose logo.jpg is in the same folder as the HTML document that embeds it.

<___ ___ = "___" ___>

<img src= "logo.jpg" />

36
New cards

Fill in the blanks for the HTML code to create a list as shown.

1.  Preheat oven to 450 degrees.

2.  Heat butter and oil in a large saucepan.

3.  Cook the shrimp for 10 minutes.

<___>

   <___>Preheat oven to 450 degrees.<___>

   <___>Heat butter and oil in a large saucepan.<___>

   <___>Cook the shrimp for 10 minutes.<___>

<___>

<ol>

   <li>Preheat oven to 450 degrees.</li>

   <li>Heat butter and oil in a large saucepan.</li>

   <li>Cook the shrimp for 10 minutes.</li>

</ol>

37
New cards

Fill in the blanks for the HTML code to create a list as shown.

•Elephants

•Tigers

•Frogs

<___>

   <___>Elephants<___>

   <___>Tigers<___>

   <___>Frogs<___>

<___>

<ul>

   <li>Elephants</li>

   <li>Tigers</li>

   <li>Frogs</li>

</ul>

38
New cards

Fill in the blanks for the HTML code to create a table as shown but without a table border.

<table>

   <tr>

      <td>___</td>

      <td>___</td>

   <___>

   <tr>

      <td>___</td>

      <td>___</td>

   <___>

<___>

<table>

   <tr>

      <td>Elephants</td>

      <td>Tulips</td>

   </tr>

   <tr>

      <td>Tigers</td>

      <td>Roses</td>

   </tr>

</table>

39
New cards

___ are markup codes in an HTML document that tell the Web browser how to format the text when displaying it.

A.Tags

B.Attributes

A

40
New cards

___ specify properties of the element that is marked up by the ___.

A.Tags; attribute

B.Attributes; tag

B

41
New cards

<p id="introduction">This is a paragraph.</p>

In the example above, ___ is a tag and ___ is its attribute.

A.<p>; id

B.id; <p>

A.

42
New cards

In the HTML code:

<p>This is a paragraph.</p>

  <p> is the , and </p> is the _. The text "This is a paragraph." is the ___.

A.element content; start tag; end tag

B.element content; end tag; start tag

C.start tag; end tag; element content

D.start tag; element content; end tag

E.end tag; start tag; element content

F.end tag; element content; start tag

C

43
New cards

Fill in the correct start tags and end tags to create a basic HTML document.

<___>

<___>

<___>This is a title.<___>

<___>

<___>

This is the content of the Web page.

<___>

<___>

<html>

<head>

<title>This is a title.</title>

</head>

<body>

This is the content of the Web page.

</body>

</html>

44
New cards

Describe briefly how XHTML is different from HTML in terms of each of the following:

i.Tag pairing

ii.Cases of tags

iii.Tag nesting

iv.Root element of a page

v.DOCTYPE declaration

i. Any start tag must be paired with an end tag

ii. Lowercase

iii. Nested tags be properly closed (similar to how parentheses are paired in a math equation)

iv. Must have one root, <html>

v. Must have a DOCTYPE declaration in before the root element, i.e. in the first line before <html> tag

45
New cards

HTML documents are plant text files T/F

True

46
New cards

For the URL: http://www.schoolname.edu/departments/art/index.html

i.The domain name of the Web server is ___.

ii.This URL is a Web address of a file named ___.

iii.This file is located in the folder named ___, which is inside another folder named ___.

i. www.schoolname.edu

ii. index.html

iii. art, departments

47
New cards

Documents that are written in a language called HTML.

Which of the following terms match the description above?

A.Web pages

B.HTML

C.HTML Markup tags

D.Web browsers

E.Web page editors

F.HTML documents

G.URL

H.XHTML

I.Cascading Style Sheets (CSS)

J.JavaScript

K.HTML 5

F and K

48
New cards

Special codes that tell the Web browser how to display the HTML document.

Which of the following terms match the description above?

A.Web pages

B.HTML

C.HTML Markup tags

D.Web browsers

E.Web page editors

F.HTML documents

G.URL

H.XHTML

I.Cascading Style Sheets (CSS)

J.JavaScript

K.HTML 5

C

49
New cards

Application programs such as Firefox, Internet Explorer, Safari, Chrome, and Opera.

Which of the following terms match the description above?

A.Web pages

B.HTML

C.HTML Markup tags

D.Web browsers

E.Web page editors

F.HTML documents

G.URL

H.XHTML

I.Cascading Style Sheets (CSS)

J.JavaScript

K.HTML 5

D

50
New cards

Application programs such as Adobe Dreamweaver.

Which of the following terms match the description above?

A.Web pages

B.HTML

C.HTML Markup tags

D.Web browsers

E.Web page editors

F.HTML documents

G.URL

H.XHTML

I.Cascading Style Sheets (CSS)

J.JavaScript

K.HTML 5

E

51
New cards

A standard address for Web pages and other resources on the World Wide Web.

Which of the following terms match the description above?

A.Web pages

B.HTML

C.HTML Markup tags

D.Web browsers

E.Web page editors

F.HTML documents

G.URL

H.XHTML

I.Cascading Style Sheets (CSS)

J.JavaScript

K.HTML 5

G

52
New cards

Intended to be a replacement for HTML and has stricter rules than HTML.

Which of the following terms match the description above?

A.Web pages

B.HTML

C.HTML Markup tags

D.Web browsers

E.Web page editors

F.HTML documents

G.URL

H.XHTML

I.Cascading Style Sheets (CSS)

J.JavaScript

K.HTML 5

H

53
New cards

Style sheets that define styles to display HTML elements. Multiple of such style sheets can be combined.

Which of the following terms match the description above?

A.Web pages

B.HTML

C.HTML Markup tags

D.Web browsers

E.Web page editors

F.HTML documents

G.URL

H.XHTML

I.Cascading Style Sheets (CSS)

J.JavaScript

K.HTML 5

I.

54
New cards

A scripting language for Web pages.

Which of the following terms match the description above?

A.Web pages

B.HTML

C.HTML Markup tags

D.Web browsers

E.Web page editors

F.HTML documents

G.URL

H.XHTML

I.Cascading Style Sheets (CSS)

J.JavaScript

K.HTML 5

J

55
New cards

Currently the newest standard of HTML.

Which of the following terms match the description above?

A.Web pages

B.HTML

C.HTML Markup tags

D.Web browsers

E.Web page editors

F.HTML documents

G.URL

H.XHTML

I.Cascading Style Sheets (CSS)

J.JavaScript

K.HTML 5

K

56
New cards