• 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/8

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;

8 Cards in this Set

  • Front
  • Back

How to comment in html


how to use an html conditional statement

Every HTML document should have a basic structure that consists of a ________, which historically has indicated the version of HTML to the browser


declaration



also means its in no-quirks mode

basic html page


content here

How should you start each HTML5 document?

a

what are the hyperlink targets

_blank Open in a new browser window



_parent Open in the parent frame or window



_self Open in the current window or frame (default)



_top Open in the topmost frame, thus replacing the contents of the window



Open in the element with matching name attribute

encodeURI

This function only encodes spaces and other nonprintable characters, but does not encode colons, slashes or any characters that are valid in a URL.

encodeURIComponent

This function converts special characters to encoded character codes, so that the string can be used within a URL. To use text directly with an HTTP GET operation, you should first encode it for use in a URL. To prevent code injection, you should also encode any special characters that are valid in a URL.