Forms Data Entry and Capture

Slides:



Advertisements
Similar presentations
Supplement Creating Forms. Objectives Show how forms are used How to create the Form element HTML elements used for creating input fields.
Advertisements

Creating Web Page Forms. Objectives Describe how Web forms can interact with a server-based program Insert a form into a Web page Create and format a.
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.
16/19/2015CS120 The Information Era CS120 The Information Era Chapter 5 – Advanced HTML TOPICS: Introduction to Web Page Forms and Introductory Javascript.
1 CS101 Introduction to Computing Lecture 12 Interactive Forms (Web Development Lecture 4)
Forms. Form An HTML form is a section of a document containing normal content, special elements called controls (checkboxes, radio buttons, buttons, etc.),
HTML Tables and Forms Creating Web Pages with HTML CIS 133 Web Programming Concepts 1.
Web Development & Design Foundations with XHTML Chapter 9 Key Concepts.
Chapter 10 Form Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Interactive Form 1 Edited By; L.Maha AlAjmi. Revision 2 We learnt how to extend our Web pages by adding a few more tags Specifically, we discussed various.
1 Web Developer & Design Foundations with XHTML Chapter 6 Key Concepts.
HTML Forms – Interactive HTML – Web 2.0. HTML – New types for input – Degrades gracefully for browsers that do not support the html 5 input types
4-Sep-15 HTML Forms Mrs. Goins Web Design Class. Parts of a Web Form A Form is an area that can contain Form Control/Elements. Each piece of information.
XP Tutorial 6New Perspectives on Creating Web Pages with HTML, XHTML, and XML 1 Creating Web Page Forms Designing a Product Registration Form Tutorial.
1 Creating Web Forms in HTML Web forms collect information from customers Web forms include different control elements including: –Input boxes –Selection.
CSC 2720 Building Web Applications HTML Forms. Introduction  HTML forms are used to collect user input.  The collected input is typically sent to a.
HTML Forms. Today’s Lecture We will try to understand the utility of forms on Web pages We will find out about the various components that are used in.
HTML Forms.
LOGO FORMs in HTML CHAPTER 5 Eastern Mediterranean University School of Computing and Technology Department of Information Technology ITEC229 Client-Side.
HTML Forms. Today’s Lecture We will try to understand the utility of forms on Web pages We will find out about the various components that are used in.
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.
Creating Web Page Forms. Introducing Web Forms Web forms collect information from users Web forms include different control elements including: –Input.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
1 Review of Form Elements. 2 The tag Used in between tags.  Form elements(text control, buttons, etc.. ) goes here. OR  Form elements(text control,
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 WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
+ FORMS HTML forms are used to pass data to a server. begins and ends a form Forms are made up of input elements Every input element has a name and value.
HTML Form Inputs. Creating a basic form …content goes here…
Week 10: HTML Forms HNDIT11062 – Web Development.
HTML Forms. A form is simply an area that can contain form fields. Form fields are objects that allow the visitor to enter information - for example text.
Web Forms. Web Forms: A form allows our web visitors to submit information to us. Some examples uses for forms are to let the web user contact us, fill.
Lesson 5 Introduction to HTML Forms. Lesson 5 Forms A form is an area that can contain form elements. Form elements are elements that allow the user to.
HTML Structure II (Form) WEEK 2.2. Contents Table Form.
XP Tutorial 6New Perspectives on HTML, XHTML, and DHTML, Comprehensive 1 Creating Web Page Forms Designing a Product Registration Form Tutorial 6.
2440: 141 Web Site Administration Web Forms Instructor: Joseph Nattey.
Client-Side Internet and Web Programming
>> Introduction to HTML: Forms
How to Write Web Forms By Mimi Opkins.
Introduction to HTML Forms and Servlets
Forms Web Design Ms. Olifer.
HTML Forms Pat Morin COMP 2405.
>> More on HTML Forms
FORMS Explained By: Sarbjit Kaur.
ITE 115 Creating Web Page Forms
ARUSHA TECHNICAL COLLEGE WEB DESIGN(html forms)
HTML/XHTML Forms 18-Sep-18.
النماذج عند الانتهاء من هذا الدرس ستكون قادرا على:
Designing Forms Lesson 10.
Introducing Forms.
1.5 FORMS.
Objectives Explore web forms Work with form servers
HTML: Basic Tags & Form Tags
Creating Form Elements
Creating Form Elements
Web Development & Design Foundations with H T M L 5
FORM OBJECT When creating an interactive web site for the Internet it is necessary to capture user input and process this input. Based on the result of.
CNIT 131 HTML5 - Forms.
Web Development & Design Foundations with H T M L 5
HTML Forms Internet Technology.
HTML Forms Internet Technology.
Creating Forms on a Web Page
Basics of Web Design Chapter 10 Form Basics Key Concepts
Intro to Forms HTML forms are used to gather information from end-users. A form can contain elements like radio-buttons, text fields, checkboxes, submit.
HTML Forms 18-Apr-19.
Intro to Forms HTML forms are used to gather information from end-users. A form can contain elements like radio-buttons, text fields, checkboxes, submit.
© Hugh McCabe 2000 Web Authoring Lecture 8
Lesson 6: Web Forms.
JAVA SCRIPT OBJECTS & DOM
Unit 5 Create Forms.
HTML: Basic Tags & Form Tags
Presentation transcript:

Forms Data Entry and Capture Creating Web Pages with HTML CIS 133 Web Programming Concepts

Creating Web Forms Control elements Elements in a form in which a user can enter information Input boxes Selection lists Option buttons Check boxes Group boxes Text areas Buttons

Parts of a Web Form

Form tag Surrounds all form related tags (input, textarea, etc.) SYNTAX <form id=“formname” name=“formname” action=“page2.html” method=“get” > other form elements go in between </form>

Input tag Used for a variety of input boxes SYNTAX <input type=“sometype” ……./>

Text boxes, Password boxes, Hidden boxes By default, displays 20 characters of text on a single line To change width, add width <input type=“text” size="value“ value=“show me in box” width=“30”/> <input type=“hidden” value=“show me in box” /> <input type=“password” />

TextArea Used to display a tall and wide textbox SYNTAX <textarea cols=“number” rows=“number”> content </textarea>

Radio button types Also called option buttons (buttons with circles) SYNTAX Football <input type=“radio” name=“mydot” value=“F” checked/> Baseball <input type=“radio” name=“mydot” value=“B” /> Tennis <input type=“radio” name=“mydot” value=“T” /> Choose a sport: Football ● Baseball o Tennis o

Checkbox button types Also called option buttons (buttons with circles) SYNTAX Football <input type=“checkbox” name=“box1” value=“Football” /> Baseball <input type=“checkbox” name=“box2” value=“B” checked/> Tennis <input type=“checkbox” name=“box3” value=“Tennis” /> Choose a sport: Football □ Baseball ■ Tennis □

Button types 3 types SYNTAX Submit – sends web page to server Reset – clears all form fields Push – performs activity on web page SYNTAX <input type=“submit” name=“submitButton” value=“Submit Form” /> <input type=“button” name=“pushButton” onclick=“javascript functionx();” /> <input type=“reset” name=“reset” value=“Reset Form” /> <script> functionx() { statements ….. } </script>

HTML 5 HTML5 has several new input types for forms. These new features allow better input control and validation. Color - used for input fields that should contain a color Date - select a date Datetime - select a date and time (with time zone) datetime-local - select a date and time (no time zone) Month - select a month and year Time - select a time Week - select a week and year

HTML 5 HTML5 has several new input types for forms. These new features allow better input control and validation. Email – an email address. * Number - input fields that should contain a numeric value – can restrict values Range - used for input fields that should contain a value from a range of numbers Search - used for search fields (a search field behaves like a regular text field) Tel – a telephone number url - used for input fields that should contain a URL address *