SlideShare ist ein Scribd-Unternehmen logo
1 von 172
Downloaden Sie, um offline zu lesen
@clarissa
Creating Beautiful,Accessible,
and User-Friendly
Forms
<input	
  type="text"	
  name="fullname">
Text
<input	
  type="date"	
  name="birthday">
Date
<input	
  type="date"	
  name="birthday">
Date
<input	
  type="date"	
  name="birthday">
Date
<input	
  type="date"	
  name="birthday">
Date
Month
<input	
  type="month"	
  name="month">
Month
<input	
  type="month"	
  name="month">
Month
<input	
  type="month"	
  name="month">
<input	
  type="time"	
  name="start-­‐
time">
Time
<input	
  type="time"	
  name="start-­‐
time">
Time
<input	
  type="time"	
  name="start-­‐
time">
Time
<input	
  type="time"	
  name="start-­‐
time">
Time
<input	
  type="email"	
  name="email">
Email
<input	
  type="email"	
  name="email">
Email
<input	
  type="email"	
  name="email">
Email
<input	
  type="email"	
  name="email">
Email
<input	
  type="url"	
  name="website">
URL
<input	
  type="url"	
  name="website">
URL
<input	
  type="tel"	
  name="phone">
Telephone
<input	
  type="tel"	
  name="phone">
Telephone
<input	
  type="number"	
  name="amount">
Number
<input	
  type="number"	
  name="amount">
Number
<input	
  type="radio"	
  value="red"	
  
name="color"	
  id="red"><label	
  
for="red">red</label>
<input	
  type="radio"	
  value="orange"	
  
name="color"	
  id="orange"><label	
  
for="orange">orange</label>
<input	
  type="radio"	
  value="blue"	
  
name="color"	
  id="blue"><label	
  
for="blue">blue</label>
label	
  {	
  
	
  	
  	
  	
  background-­‐color:	
  #ffa;
	
  	
  	
  	
  padding:	
  3px	
  6px;
	
  	
  	
  	
  border-­‐radius:	
  4px;	
  
}
input[type="radio"]	
  {
	
  	
  	
  	
  opacity:0;
	
  	
  	
  	
  z-­‐index:100;
}
label	
  {
	
  	
  	
  	
  margin-­‐left:	
  -­‐17px;
}
input[type="radio"]:checked	
  +	
  label	
  
{	
  
	
  	
  	
  	
  color:	
  #fff;
	
  	
  	
  	
  background-­‐color:	
  orange;
}
input[type="radio"]:checked	
  +	
  label	
  
{	
  
	
  	
  	
  	
  color:	
  #fff;
	
  	
  	
  	
  background-­‐color:	
  orange;
}
input[type="radio"]:checked	
  +	
  label	
  
{	
  
	
  	
  	
  	
  color:	
  #fff;
	
  	
  	
  	
  background-­‐color:	
  orange;
}
https://www.smashingmagazine.com/2011/11/redesigning-the-country-selector/
https://www.smashingmagazine.com/2011/11/redesigning-the-country-selector/
<select>
	
  	
  <optgroup	
  label="Meat">
	
  	
  	
  	
  <option	
  value="bacon">Bacon</option>
	
  	
  	
  	
  <option	
  value="chicken">Chicken</option>
	
  	
  	
  	
  <option	
  value="ham">Ham</option>
	
  	
  </optgroup>	
  
	
  	
  <optgroup	
  label="Veggies">
	
  	
  	
  	
  <option	
  value="peppers">Green	
  Peppers</
option>
	
  	
  	
  	
  <option	
  value="mushrooms">Mushrooms</
option>
	
  	
  </optgroup>	
  
</select>
<label	
  for="firstname">
	
  	
  	
  	
  First	
  name
</label>
<input	
  type="text"	
  name="fname"	
  
id="firstname">
<label>
	
  	
  	
  	
  First	
  name:
	
  	
  	
  	
  <input	
  type="text"	
  name="fname">
</label>
<label	
  for="firstname">
	
  	
  	
  	
  First	
  name:
	
  	
  	
  	
  <input	
  type="text"	
  
	
  	
  	
  	
  name="fname"	
  id="firstname">
</label>
<input	
  type="search"	
  name="search"	
  
aria-­‐label="Search">
<input	
  type="email"	
  name="email"
placeholder="name@domain.com">
::-­‐webkit-­‐input-­‐placeholder	
  {	
  color:	
  
blue;	
  }
::-­‐moz-­‐placeholder	
  {	
  color:	
  blue;	
  }
:-­‐ms-­‐input-­‐placeholder	
  {	
  color:	
  blue;	
  }
:-­‐moz-­‐placeholder	
  {	
  color:	
  blue;	
  }
<input	
  type="text"	
  name="city"	
  
required>	
  	
  	
  	
  	
  	
  	
  	
  
	
  	
  
<input	
  type="text"	
  name="city"	
  
required	
  aria-­‐required="true">
input[required]	
  {	
  ...	
  }	
  
or
input:required	
  {	
  ...	
  }
input:optional	
  {	
  ...	
  }
aria-­‐live="polite"
aria-­‐live="assertive"
<input	
  type="number"	
  name="number"	
  
min="1"	
  max="100">
input:valid	
  {	
  border:	
  3px	
  solid	
  green;	
  }
input:invalid	
  {	
  border:	
  3px	
  dotted	
  red;	
  }
<input	
  type="text"	
  name="fieldname"	
  
autocorrect="off">
<input	
  type="text"	
  name="fieldname"	
  
autocapitalize="off">
<input	
  type="text"	
  name="fieldname"	
  
autocapitalize="off">
autocapitalize="characters"
autocapitalize="words"
autocapitalize="sentences"
Clarissa Peterson
www.clarissapeterson.com
@clarissa

Weitere ähnliche Inhalte

Was ist angesagt?

Dart : one language to rule them all - MixIT 2013
Dart : one language to rule them all - MixIT 2013Dart : one language to rule them all - MixIT 2013
Dart : one language to rule them all - MixIT 2013
Sébastien Deleuze
 
Document
DocumentDocument
Document
viwviw
 

Was ist angesagt? (7)

Open course(programming languages) 20150304
Open course(programming languages) 20150304Open course(programming languages) 20150304
Open course(programming languages) 20150304
 
Dart : one language to rule them all - MixIT 2013
Dart : one language to rule them all - MixIT 2013Dart : one language to rule them all - MixIT 2013
Dart : one language to rule them all - MixIT 2013
 
Not Really PHP by the book
Not Really PHP by the bookNot Really PHP by the book
Not Really PHP by the book
 
Growing jQuery
Growing jQueryGrowing jQuery
Growing jQuery
 
Document
DocumentDocument
Document
 
名古屋Ruby会議01 - Rubyでライフハッキング10連発♪
名古屋Ruby会議01 - Rubyでライフハッキング10連発♪名古屋Ruby会議01 - Rubyでライフハッキング10連発♪
名古屋Ruby会議01 - Rubyでライフハッキング10連発♪
 
QNlocal: Docker, Continuous Integration, WordPress e milioni di visite. Si è ...
QNlocal: Docker, Continuous Integration, WordPress e milioni di visite. Si è ...QNlocal: Docker, Continuous Integration, WordPress e milioni di visite. Si è ...
QNlocal: Docker, Continuous Integration, WordPress e milioni di visite. Si è ...
 

Ähnlich wie Creating Beautiful, Accessible, and User-Friendly Forms (12)

Web Design Course - Lecture 6 - HTML form and form validation
Web Design Course - Lecture 6 - HTML form and form validationWeb Design Course - Lecture 6 - HTML form and form validation
Web Design Course - Lecture 6 - HTML form and form validation
 
XML Schemas
XML SchemasXML Schemas
XML Schemas
 
Forms
FormsForms
Forms
 
Java script form validation
Java script  form validationJava script  form validation
Java script form validation
 
Zencoding cheatsheet, ayuda Memoria
Zencoding cheatsheet, ayuda MemoriaZencoding cheatsheet, ayuda Memoria
Zencoding cheatsheet, ayuda Memoria
 
Zen Coding Cheat Sheet
Zen Coding Cheat SheetZen Coding Cheat Sheet
Zen Coding Cheat Sheet
 
Bad Form @ JSConf Asia 2014
Bad Form @ JSConf Asia 2014Bad Form @ JSConf Asia 2014
Bad Form @ JSConf Asia 2014
 
Form
FormForm
Form
 
Php code for online quiz
Php code for online quizPhp code for online quiz
Php code for online quiz
 
php Mailer
php Mailerphp Mailer
php Mailer
 
How to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS StylingHow to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS Styling
 
Three tier application
Three tier applicationThree tier application
Three tier application
 

Mehr von Clarissa Peterson

Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & Resources
Clarissa Peterson
 
Optimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web DesignOptimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web Design
Clarissa Peterson
 

Mehr von Clarissa Peterson (19)

Alt Text Is Your Superpower
Alt Text Is Your SuperpowerAlt Text Is Your Superpower
Alt Text Is Your Superpower
 
Designing for Users: How to Create a Better User Experience
Designing for Users: How to Create a Better User ExperienceDesigning for Users: How to Create a Better User Experience
Designing for Users: How to Create a Better User Experience
 
Making the Web Easy
Making the Web EasyMaking the Web Easy
Making the Web Easy
 
Responsive Color
Responsive ColorResponsive Color
Responsive Color
 
Responsive Design Workshop
Responsive Design WorkshopResponsive Design Workshop
Responsive Design Workshop
 
UX & Responsive Design
UX & Responsive DesignUX & Responsive Design
UX & Responsive Design
 
Designing Responsive Websites
Designing Responsive WebsitesDesigning Responsive Websites
Designing Responsive Websites
 
Responsive Typography II
Responsive Typography IIResponsive Typography II
Responsive Typography II
 
Responsive Design in the Real World
Responsive Design in the Real WorldResponsive Design in the Real World
Responsive Design in the Real World
 
Responsive Design Essentials
Responsive Design EssentialsResponsive Design Essentials
Responsive Design Essentials
 
Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & Resources
 
Content Strategy for Responsive Websites
Content Strategy for Responsive WebsitesContent Strategy for Responsive Websites
Content Strategy for Responsive Websites
 
UX & Responsive Design
UX & Responsive DesignUX & Responsive Design
UX & Responsive Design
 
Responsive Design
Responsive Design Responsive Design
Responsive Design
 
Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & Resources
 
Optimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web DesignOptimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web Design
 
Responsive Design Heaven & Hell
Responsive Design Heaven & HellResponsive Design Heaven & Hell
Responsive Design Heaven & Hell
 
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Introduction to Responsive Design v.2
Introduction to Responsive Design v.2
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 

Kürzlich hochgeladen

Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptx
balqisyamutia
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
nirzagarg
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
awasv46j
 
Design-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora AgencyDesign-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora Agency
Isadora Agency
 
Minimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxMinimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptx
balqisyamutia
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
gajnagarg
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion pills in Kuwait Cytotec pills in Kuwait
 
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
HyderabadDolls
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
mark11275
 

Kürzlich hochgeladen (20)

Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptx
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
 
Essential UI/UX Design Principles: A Comprehensive Guide
Essential UI/UX Design Principles: A Comprehensive GuideEssential UI/UX Design Principles: A Comprehensive Guide
Essential UI/UX Design Principles: A Comprehensive Guide
 
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipRaebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
 
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
 
Dahisar Comfortable Call Girls ,09167354423,Mira Road Model Call Girls
Dahisar Comfortable Call Girls ,09167354423,Mira Road Model Call GirlsDahisar Comfortable Call Girls ,09167354423,Mira Road Model Call Girls
Dahisar Comfortable Call Girls ,09167354423,Mira Road Model Call Girls
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
 
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
 
Design-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora AgencyDesign-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora Agency
 
Gamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad IbrahimGamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad Ibrahim
 
The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024
 
Minimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxMinimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptx
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentation
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
 
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best ServiceIndependent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Service
 
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
 
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
 
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best ServiceHigh Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
 

Creating Beautiful, Accessible, and User-Friendly Forms