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

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;

16 Cards in this Set

  • Front
  • Back

Unordered list

<ul> </ul> bulleted no specific order.

Ordered list

<ol></ol> numbered list sequential

Video element

Embeds video player. <video src="test-video.mp4" controls>test</video src>


controls-display video controller.

em

Emphasize in italics. <em>word</em>

List element

<li></li>

<div></div>

Divided html into sections

Embedding images

<img src="image.png"

Paragraph

<p></p> blocks of code

Unique id attiributes

Specific and unique id attributes. Must begin with (a-Z,0-9,hyphens,underscore,and period). Used by javascript and CSS.

Alt

Alternate text if image not able to be displayed, alt=text"

Bold text

<strong>text</strong>

Create hyperlinks in html document

<a href="http://www.microsoft.com"> absolute path or relative path (local file in same folder) <a href="./absolute.html">

Target

target="_blank" where hyperlink should be opened. _blank- new window or tab.

Link to another part of a page-divided page

<a href="#id-of-element-to-point-to"> different part of page</a>


< p id="id-of-element-to-point-to></p>

Adding comments

<!-- comments -->

Version of html

<!DOCTYPE html>