*text tags*
h1
title
h2
more small
h3
more more small
h6
smallest
/br
space a line
em
emphasis 1
storng, b
emphasis 2
a href="_:_"
link
img
make an image
p
make a paragragh
ul-li
circle list
ol-li
number list
blockquote, q, cite
quotation
*functions*
form#1 input
ex) input id="HTML" name="skills" value="html" type="checkbox" ->
HTML
[type]:
text
email
password
url
number
file (accept=".jpg, .pdf"--> restrict)
tel(phone number)
[attribute of tag]:
placeholder
maxlength(5 letters)
minlength(5 letters)
input max/min="": the maximum and minimum values of the number you can enter
disable: prevent INPUT from being used
form#2 label
Tags to name FORM forms ex) [label for="user-name"]name[/label] [input type="text" id="user-name"]->This name is in LABEL
name
form#3 Radio & Check box
Radio(with name, value): single choice Check box: multiple choice
HTML
CSS
JavaScript
form#4 Selection & Optione
choice one
favorite
dog
cat
fox
submit
form#5 Textarea
input type="text" --> one line
code: textarea id="filed" cols="10" rows="10"
form#6 Button(with the value of type)
type:
button
submit
reset(unused)