Web Development & Design Foundations with HTML5 8th Edition

Slides:



Advertisements
Similar presentations
Tutorial 6 Creating a Web Form
Advertisements

Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Ch3: Introduction to HTML5 part 2 Dr. Abdullah Almutairi ISC 340 Fall 2014.
Creating a Form on a Web Page
Forms Review. 2 Using Forms tag  Contains the form elements on a web page  Container tag tag  Configures a variety of form elements including text.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
Chapter 10 Form Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Principles of Web Design 6 th Edition Chapter 11 – Web Forms.
HTML 5 Tutorial Chapter 9 Form Attributes. New Form Attributes HTML5 has several new elements and attributes for forms. New form attributes : autocomplete.
1 Web Developer & Design Foundations with XHTML Chapter 6 Key Concepts.
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
HTML B OOT C AMP Chapter 9 Forms Kirkwood Continuing Education © Copyright 2015, Fred McClurg All Rights Reserved.
CIS 1310 – HTML & CSS 9 Forms. CIS 1310 – HTML & CSS Learning Outcomes  Describe Common Uses of Forms on Web Pages  Create Forms on Web Pages  Associate.
1 Creating Web Forms in HTML Web forms collect information from customers Web forms include different control elements including: –Input boxes –Selection.
Session 1 Chapter 10 - How to Work with Forms ITI 134: HTML5 Desktop and Mobile Level II
Neal Stublen Improvements  New form elements  Assist with validation  Consistency across sites  Changes reduce the need for common.
Tables and Forms HTML5 Tables and Forms. Table Overview table element ( ) Attributes: align (left, right, center), bgcolor, border, cellpadding, cellspacing,
Basics of Web Design 1 Copyright © 2016 Pearson Education, Inc., Hoboken NJ.
Session: 10. © Aptech Ltd. 2HTML Forms / Session 10  Describe HTML5 forms  Explain the working of new input types in HTML5  Explain the new Form attributes.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
HTML Forms.
Week 9 - Form Basics Key Concepts 1. 1.Describe common uses of forms on web pages 2.Create forms on web pages using the form, input, textarea, and select.
  Just another way to collect pieces together (like div, section)  Anything can be in there  Formatting just like all other elements  Always name.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
HTML Forms a form is a container for input elements on a web page input elements contain data that is sent to the web server for processing.
Copyright © Terry Felke-Morris HTML5: TEXT BOX Accepts text information in address format Common Attributes: ◦ type=“ ” ◦ name ◦ id ◦
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
HTML Forms Chapter 9 pp Basic Form Join our list Name:
HTML 5 Form elements Basharat Mahmood, Department of Computer Science,CIIT,Islamabad, Pakistan. 1.
expanded by J. Goetz, © Pearson Education Copyright (c) 2006 Prentice-Hall. All rights reserved.
Tutorial 6 Creating a Web Form
Session I How to Work with Forms Chapter 11 - How to Work with Formswww.profburnett.com.
The Web Web Design. 3.2 The Web Focus on Reading Main Ideas A URL is an address that identifies a specific Web page. Web browsers have varying capabilities.
INTRODUCTION TO HTML5 HTML5 Form Input. Create a Number Input Type  You can use the number input type to restrict input fields to numeric values only.
HTML 5 Tutorial Chapter 7 Input Type. New Input Type HTML5 has several new input types for forms. These new features allow for better input control and.
HTML Advanced: HTML 5 With Adaptations by Dilvan Moreira.
HTML 5.
>> Introduction to HTML: Forms
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
© 2017 Akhilesh Bajaj, All Rights Reserved
Web Development & Design Foundations with HTML5 8th Edition
WHY FORMS? Explain: Mostly, when you need to collect data from a user you need a form Click: Google search form Click: Facebook login form Click:
Copyright (c) 2006 Prentice-Hall. All rights reserved.
Client-Side Internet and Web Programming
Chapter 3 Introduction to HTML5: Part 2
Forms and Form Controls
IS333: MULTI-TIER APPLICATION DEVELOPMENT
Web Development & Design Foundations with HTML5 8th Edition
CS7026: Authoring for Digital Media
النماذج عند الانتهاء من هذا الدرس ستكون قادرا على:
Objectives Explore web forms Work with form servers
Web Systems Development (CSC-215)
Mobile Best Practices & Essential Tips
Web Development & Design Foundations with H T M L 5
Forms, cont’d.
HTML5 Level II Session III
Web Development & Design Foundations with H T M L 5
New Form Input Types.
HTML5 Demo ISYS 350.
Session IV Chapter 10 – How to Work with Forms and Data Validation
HTML5 Demo ISYS 350.
HTML5 Demo ISYS 350.
HTML5 Form Types – Newer Available Fields
Basics of Web Design Chapter 10 Form Basics Key Concepts
School of Business Administration Web Development (Chapter 10)
Input Element Form Controls HOP 9.2 Scrolling Text Box
HTML5 Demo ISYS 350.
Session III Chapter 10 – How to Work with Forms and Data Validation
Kanida Sinmai HTML Form Kanida Sinmai
Presentation transcript:

Web Development & Design Foundations with HTML5 8th Edition Chapter 9 Key Concepts

HTML5: Email Text Box <input> Accepts text information in e-mail address format Common Attributes: type="emai“ name id size maxlength value placeholder required

Example chapter9/email.html

HTML5: URL Text Box <input> Accepts text information in URL format Common Attributes: type="url" name id size maxlength value placeholder required

Example chapter9/url.html

HTML5: Telephone Number Text Box <input> Accepts text information in telephone number format Common Attributes: type="tel“ name id size maxlength value placeholder required

HTML5: Search Text Box <input> Accepts search terms Common Attributes: type=“search” name id size maxlength value placeholder required

HTML5: Search Text Box <input> Accepts search terms Common Attributes: type="search" name id size maxlength value placeholder required

Example chapter9/search.html

HTML5: Datalist Control <label for="color">Favorite Color:</label> <input type="text" name="color" id="color" list="colors" > <datalist id="colors"> <option value="red" label="Red"> <option value="green" label="Green"> <option value="blue" label="Blue"> <option value="yellow" label=“Yellow"> <option value="pink" label="Pink"> <option value="black" label="Black"> </datalist>

Example chapter9/list.html

HTML5: Slider Control <label for="myChoice"> Choose a number between 1 and 100:</label><br> Low <input type="range" name="myChoice" id="myChoice" min="1" max="100"> High

Example chapter9/range.html

HTML5: Spinner Control <label for="myChoice">Choose a number between 1 and 10:</label> <input type="number" name="myChoice" id="myChoice“ min="1" max="10">

Example chapter9/spinner.html

HTML5: Calendar Control <label for="myDate">Choose a Date</label> <input type="date" name="myDate" id="myDate">

Example chapter9/date.html Works with Chrome.

HTML5: Color Well Control <label for="myColor">Choose a color:</label> <input type="color" name="myColor" id="myColor">

Example chapter9/color.html

Practice with an HTML5 Form The form display and functioning varies with browser support.

Hands-on practice 9.6 (page 431-3) <input type="text" name="myName" id="myName" required="required" placeholder="your first and last name"> chapter9/9.6/form.html