• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/19

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

19 Cards in this Set

  • Front
  • Back

URL

resource uniform locator; standard for specifying the address of Web pages and otherresources on the World Wide Web; made up of a domain name and file path

Markup tag
tells the Web browser the format of the text and specify properties of the element; surrounded by < >; not all tags have element content
Javascript
a scripting language for Web pages; can be used to add interactivity, generate content on the Web page based on the viewer’schoice, validate online forms before submission, and create and track cookies
Basic structure of an HTML document

html, head, title, and body

HTML tag

encloses the document and tells the browser that this is the start of an HTMLdocument

Head tag

element content is information about the document; function definitions of JavaScript and links to external JavaScript and style sheets; info in header is NOT visible in the body of the web page

Title tag

element content is the title of the document; title is displayed on the Window bar of thebrowser window; title is used as the bookmark for the page

Body tag

element content is what will be displayed in thebrowser window

Link tag

<a href="URL or file path>displayed text</a>; href is the attribute

Image tag

<img src="URL or file path"/>; src is the attribute

File path

location of a file on a computer; folder names are separated by a slash

Absolute path

full URL to a Web page or any media; used for linking to files that are on adifferent Web site

Document-Relative Path
xxx.html; thestarting point to search is your current web page document or file
Site Root-Relative Path
starts with a slash (/), meaning starting fromthe root folder (outermost folder) of the site
HTML5

html including new key features such as video and audio tags, content-specific tags, tags for form elements, canvas element, and storage of user data

Content-specific tags
allow mark upcontent by semantics and provide astandardized systemto classify theinformation on Webpages
HTML5 basic structure

<!doctype html5>


<html>


<head>


<title></title>


</head>


<body>


</body>


</html>

Tradition methods of adding video and audio on web pages

external application plays the media

HTML5 method of adding video and audio on web pages

browser's built-in player plays the media