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

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;

3 Cards in this Set

  • Front
  • Back

What is HTML?

- Hyper Text Markup Language


- language that webpages are written in


-describes content and structure of webpage

What are some tags in HTML?

begin with <html></html>


<head> links to CSS files and page titles


<link> to connect webpage to external file (placed between head tags)


<body> tags contain main HTML page content


<title> browser file heading


<h1> largest heading size


<h6> smallest heading size


<img src="link" alt="text to be displayed if image doesn't load" height=12 width= 3> for images


<a href="link">Click here to go to link</a> to add hyperlink


<p> to add text on webpage



<ol> ordered list


<li> each item in list to be defined


<div style="backgriund-colour: blue"> for page divisions


<form> tags with


<ul> unordered list<ol> ordered list<li> each item in list to be defined<div style="backgriund-colour: blue"> for page divisions<form> tags with <input id="input" type="text" name="value"> <br> <button type="button" onclick="runFunction()">Submit</button> for input box<script> tags for Java Script


<input id="input" type="text" name="value">


<div style="backgriund-colour: blue"> for page divisions<form> tags with <input id="input" type="text" name="value"> <br> <button type="button" onclick="runFunction()">Submit</button> for input box<script> tags for Java Script


<br>


<button type="button" onclick="runFunction()">Submit</button> for input box


<script> tags for Java Script





What is Java Script?

A scripting language used to make webpages interactive.