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

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;

26 Cards in this Set

  • Front
  • Back
What is the hyperlink tag?
<a href="target">link text</a>
What are the 3 table tags?
Table <table>
Table row <tr>
Table data <td>
What two attributes can be used to change the width and height of table cells
colspan, rowspan
What is the doctype for?
Tells the browser which version of html to expect
what is <span> for?
Grouping inline elements so they can be styled in CSS
What is the layout for properties and values in html and css?
<element attribute="value">
selector{property:value;}
How can CSS be placed in <head>
<style type="text/css">
</style>
or
<link href="myStyle.css" type="text/css" rel="stylesheet"/>
what are the 4 font properties in CSS?
style, weight, size, family,
what are the selectors for class and id?
. and #
What are the two ways of placing Javascript in html?
In head or body, or placed as value of event handler
<script type="text/javascript" ></script
<p onmouseover = 'this.style.backgroundColor="yellow";'>
What are 5 javascript events?
onclick
onload
onfocus
onmouseover
onsubmit
what are the 3 message boxes in javascript?
alert, confirm, prompt
how can you use external javascript?
<script type="text/javascript" src="myscript.js"></script>
name 7 inputs for an html form
textarea. reset, button, checkbox, select, text, radio
how are variables declared in javascript?
var a;
How do you declare arrays in javascript?
var a = [1,2.5,"hello"];
Where are javascript functions placed?
in the head or or linked to external js file
what are the 3 functions for pattern matching?
match, search, replace
What is the layout of regular expressions in jscript?
/pattern/modifiers;
What are 4 objects in jscript?
Strong, Array, Date, Maths
what is a webserver
a program that waits for clients to connect and request resources, sending them
what is static and dynamic content?
static: txt, html, jpg, sent as is
dynamic: script that must be run, the OUTPUT is sent
how to declare a variable in php?
$myVar = 12;
what are the 3 ways to import a php script?
include
require
requireOnce
Difference between GET and POST?
GET passes data in the URL
what is the println equivalent for PHP
echo