Skip to content

Latest commit

 

History

History

Forms

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Forms

New concepts for today

  • form elements
    • input, types
    • textarea
    • select
    • checkbox, radio
    • button
    • label
    • (color, date, range)

Today's exercises

Forms: text input elements

How What
elements to use: <input> with the right type attribute, <textarea> 9.2

Forms: attributes

How What
attributes to use: disabled, placeholder, value 9.2

Forms: checkbox, radio

How What
elements to use: <input>, with types checkbox and radio, and with correct name attributes 9.2

Forms: buttons, labels

How What
new elements to use: <button>, <label> with for attribute 9.2

Styling input elements: box model

How What
style your inputs! use padding, margin, border and background. zeplin design here 9.2

Styling input elements: flexbox

How What
position your form elements with flexbox! zeplin design here 9.2

Optional homework