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

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;

21 Cards in this Set

  • Front
  • Back
What are the two languages we use to create Web pages, how are they treated by:

the server, and

the browser...
the languages used to create Web pages are:

HTML, and

CSS

1) the server stores and serves pages created in HTML and CSS

2) the browser retrieves pages and renders their content based on the HTML and CSS
What does HTML stand for, and what is it used for...
HTTP is an abbreviation for Hyper Text Markup Lamguage

and, it's used to structure your Web page
What does CSS stand for, and what is it used for...
CSS is an abbreviation for Cascading Style Sheets

and, is used to control the presentation of your HTML
HTML is used to mark up content with tags to provide structure, what are tags referred to as...
we call matching tags and their enclosed content

elements
What three parts make up an element...
1) an opening tag

2) content

3) a closing tag

Note: there are a few elements like, <img> that are an exception to this rule
Opening tags can have attributes, give 2 examples...
type, and

align
How is a closing tag formatted...
a closing tag

has a "/" after the left angle bracket, in front of the tag name

e.g. </a>
What are the three mandatory elements for your Web page...
the following three elements should be present in your Web page

1) <html>

2) <head>

3) <body>
Where should information about the Web page be held...
Within the <head> element
Which element's content do you see displayed in the browser...
Only the content within the <body> element
What is significant about whitespace (tabs, returns, spaces) within the content...
1) the browser ignores most of it

2) in the editor it's used to make your HTML code more readable (to you)
CSS rules can be coded directly into the content, where would this be put...
CSS rules can be included within a <style> element, within a <head> element
What characteristics of the elements in your HTML can you specify by using CSS...
the style characteristics
How do you put comments to myself in HTML?
<!-- and -->
HTML BODY
What do tags do? (<head>, <p>, <h1>,)
The tags tell the browser about the structure and meaning of your text. meaning to tell the browser what text is in a heading,
whats do we consider a whole element?
<h1> Starbuzz Coffee Beverages </h1>
We can call it the <h1> element. An element consists of the enclosing tags and the content in between.
In the closing tag where is the forward " / " placed
</h1>
The forward slash leans on the tag.
What is what? <style type=”text/css”>
Tag:__?
Attribute__?
Attribute style__?
Tag: <style>
Attribute: type
Attribute style: ”text/css”
What does the type attribute do?
It tells the browser the kind of style you’re using, CSS.
What do attributes do?
They give you a way to provide additional information about an element.