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

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;

15 Cards in this Set

  • Front
  • Back

What are the three components of a webpage?

Text Content, references to other files, and markup.

What is HTML Markup composed of?

Elements, attributes and values.

Do you write your HTML in lowercase, or uppercase?

Lower case, the !DOCTYPE being the exception.

What do you surround attribute values with?

Quotes.

File and folder names should be written in...

Lowercase.

File words should be separated with a...

Dash.

What do HTML Documents always begin with?

<!DOCTYPE html>

Where does a page's content go?

In the <body></body> element.

Where does a pages' instructions for the browser and the search engine go?

In the head <head> </head>

What goes into the <head> </head> element?

The title, and the charset, which is <meta charset="utf-8" and the favicon

What does the html element also contain?

The language the page is written in: lang= "en"




<html lang="en"></html>

When writing in HTML, should you make it "absolute" or "semantic"?

Semantic.

Why should you write your web page in semantic html?

Writing your web page in semantic html improves accessibility, make the site's structure more efficient and easier to maintain and stylize.

What controls the PRESENTATION of HTML content?

CSS (Cascading Style Sheets)

What is the HTML page structure hierarchy?

<!DOCTYPE>


<html>


<head>


</head>


<body>


</body>


</html>