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

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;

11 Cards in this Set

  • Front
  • Back

What tag do you use to focus on specific form

autofocus

What is the syntax for a dropdown list that allows you to add additional data

label, input, datalist, option (make sure you include list element in the input tag)

What is syntax for regular dropdown

label, select, optgroup, option

What is the syntax for a list that goes up in increments

<input id= "an id" type="number" min= "min value" max="max value" step="increments" value="starting value"/>

what tag do you use for a required input

*Within input tag:




required="required"

make a list item be the default

selected="selected"

structure for a form

form


fieldset-parent container (can put fieldset within fieldset)


legend


label


input


other stuff, youre gonna be repeating label input

checkbox

<label id = "id">


<input name="name" id="id" type="checkbox" checked="checked"/>


text data


</label>




*put input tag within label

Reset and submit

<input name="Submit" type="submit" value="value name"/>




<input name="Reset" type="reset" value="value name"/>

slider

<label class="slideLabel"> 0 </label>


<input name= "slide" id="slide" type="range" min="0" max="100" step="5" value="50"/>


<label class="slideLabel"> 100 </label>

Radio buttons

*try putting it within is own fieldset




<label for="labelname">Yes</label>


<input name="name" id="labelname" type="radio" value ="yes(or no)"/>