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

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;

22 Cards in this Set

  • Front
  • Back

full form of HTML

HyperText Markup Language

hypertext

"text with links in it." Any time you click on a word that brings you to a new webpage, you've clicked on hypertext!

markup language

a programming language used to make text do more than just sit on a page: it can turn text into images, links, tables, lists, and much more. HTML is the markup language we'll be learning.

1st line

!doctype html tag

meaning ? use?

This tells the browser what language it's reading (in this case, HTML).

2nd thing in html after doctype

html tag

how many heading sizes? what else do u know abt them

h1 to h6 decr size

Adding Hyperlinks!

<a> tags with href

Adding images

img tag

after html


tags - which tags ?

head tags and title tags









Making the image into a Link ?

a href and img tags

which tags are used for ordered lists ? basic structure?

ol and li tags

comments

<!-- comment -->

how to change font size of a paragraph?

style="font-size: 10px" - this shud be inside the 1st/begining p tag

how to change font size and color of a heading or paragraph?

style="color: green; font-size:16px" - put this inside the p or h tags (beginning)

how to change background color?

style="background-color: red;" inside beginning tags

how to align text ?

style="text-align:center" inside beginning tags

bold words or paras?

strong tag

Italicizing words

em tags

create a table - which tags

table tag


table border tag


tr - row


td- column


Use of ‘Div’ —

allows you to divide your page into containers (that is, different pieces).

use of span ?

allows you to control styling for smaller parts of your page, such as text. For example, if you always want the first word of your paragraphs to be red, you can wrap each first word in<span></span> tags and make them red