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

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;

28 Cards in this Set

  • Front
  • Back

Element used to declare the document.

<!DOCTYPE html>

<html>

Container for the document.

Allows meta tags to be added, links to style sheets, and allows the <title> tag.

<head>

<meta>

Specifies a document description, revision dates, keywords for search engines, and what HTML5 character set that the document uses.

References a style sheet.

<link>

<title>

Identifies the name of the document, is usually shown in the browser's tab.

Includes all the content of a web page.

<body>

<p>

Is used for paragraphs.

Inserts a line break.

<br>

<h1> <h2> <h3> <h4> <h5> <h6>

Heading levels that are used to change the text size of a heading.

A CSS style attribute that centers a paragraph.

<p style="text-align:center"> Horosho! </p>

<p style= "text-align:right"> Nico Nico Ni! </p>

The paragraph would appear to the right side of the webpage.

The paragraph would appear to the left side of the webpage.

<p style="text-align:left"> Fighto-Dayo! </p>

<pre>

Prefixed font that shows the webpage in it's original format.

Indents text.

<blockquote>

<strong>

Renders as "bold text" by the web browser.

Renders as "italic text" by the web browser.

<em>

<b>

Bold text that's included in a font.

Italic text that's included in a font.

<i>

<dfn>

Word definitions.

<code>

For program code examples.

For user keyboard text to be typed.

<kbd>

For program sample output.

<samp>

<var>

For variable text in program code.

Ordered list.

<ol>

<ul>

Unordered list.

List item.

<li>

<!-- Nico is the number one idol superstar! -->

Hidden comment.