Web Designing course in Ameerpet Hyderabad, Web Design Training Institute in Hyderabad - PowerPoint PPT Presentation

About This Presentation
Title:

Web Designing course in Ameerpet Hyderabad, Web Design Training Institute in Hyderabad

Description:

Are you looking to join Web Design course you can start immediately, Prism Multimedia has the solution for you. If you need web design training, you have come to the right place. Learn Web Design at Prism, which provides best Web Design training in Hyderabad. As a web designer you should know HTML, CSS, JavaScript, jQuery and graphic design as well. A Web designer is responsible for creating a web page which should be very attractive and meaningful. You will learn HTML because HTML is used for displaying content on web page but how it is displayed that is decides by CSS so student has to learn HTML and CSS. So what we suggest to the people who want to learn Web Designing in Hyderabad, come and attend our Web Design course. You will become a great web designer after completing this Web Design course at Prism. We also assist our students in placements. For more details visit Call 9701334133 to attend free Demo – PowerPoint PPT presentation

Number of Views:55

less

Transcript and Presenter's Notes

Title: Web Designing course in Ameerpet Hyderabad, Web Design Training Institute in Hyderabad


1
HTML Forms
PRISM MULTIMEDIA
2
What are forms?
  • ltformgt is just another kind of HTML tag
  • Forms are the primary method for gathering data
    from site visitors
  • HTML forms are used to create (rather primitive)
    GUIs on Web pages
  • Usually the purpose is to ask the user for
    information
  • The information is then sent back to the server

3
  • A form is an area that can contain form elements
  • The syntax is ltform parametersgt ...form
    elements... lt/formgt
  • Form elements include buttons, checkboxes, text
    fields, radio buttons, drop-down menus, etc
  • Other kinds of HTML tags can be mixed in with the
    form elements
  • A form usually contains a Submit button to send
    the information in he form elements to the server
  • The forms parameters tell JavaScript how to send
    the information to the server (there are two
    different ways it could be sent)
  • Forms can be used for other things, such as a GUI
    for simple programs

4
Forms and JavaScript
  • The JavaScript language can be used to make pages
    that do something
  • You can use JavaScript to write complete
    programs, but...
  • Usually you just use snippets of JavaScript here
    and there throughout your Web page
  • JavaScript code snippets can be attached to
    various form elements
  • For example, you might want to check that a
    zipcode field contains a 5-digit integer before
    you send that information to the server

5
Forms and JavaScript
  • Microsoft sometimes calls JavaScript active
    scripting
  • HTML forms can be used without JavaScript, and
    JavaScript can be used without HTML forms, but
    they work well together
  • JavaScript for HTML is covered in a separate
    lecture

6
The ltformgt tag
  • The ltform argumentsgt ... lt/formgt tag encloses
    form elements (and probably other HTML as well)
  • The arguments to form tell what to do with the
    user input
  • action"url" (required)
  • Specifies where to send the data when the Submit
    button is clicked
  • method"get" (default)
  • Form data is sent as a URL with ?form_data info
    appended to the end
  • Can be used only if data is all ASCII and not
    more than 100 characters

7
The ltformgt tag
  • method"post"
  • Form data is sent in the body of the URL request
  • Cannot be bookmarked by most browsers
  • target"target"
  • Tells where to open the page sent as a result of
    the request
  • target _blank means open in a new window
  • target _top means use the same window

8
The ltinputgt tag
  • Most, but not all, form elements use the input
    tag, with a type"..." argument to tell which
    kind of element it is
  • Type can be text, checkbox, radio, password,
    hidden, submit, reset, button, file, or image

9
The ltinputgt tag
  • Other common input tag arguments include
  • name the name of the element
  • value the value of the element used in
    different ways for different values of type
  • readonly the value cannot be changed
  • disabled the user cant do anything with this
    element
  • Other arguments are defined for the input tag but
    have meaning only for certain values of type

10
Text input
A text field ltinput type"text"
name"textfield" value"with an initial value"gt
A multi-line text field lttextarea
name"textarea" cols"24" rows"2"gtHellolt/textarea
gt
A password field ltinput type"password"
name"textfield3" value"secret"gt
11
Drop-down list ltselectgtltoptiongt
Single choice ltselect name"country" size"1"gt
ltoption value"UK"gtUnited Kingdomlt/optiongt
ltoption value"USA"gtUnited States of
Americalt/optiongt ltoption value"NK"gtNorth
Korealt/optiongt ltoption value"BE"gtBelgiumlt/optio
ngt lt/selectgt
12
(multiple) selection list ltselectgtltoptiongt
Multiple choice ltselect name"country"
size"3" multiple"multiple"gt ltoption
value"UK"gtUnited Kingdomlt/optiongt ltoption
value"USA"gtUnited States of Americalt/optiongt
ltoption value"NK"gtNorth Korealt/optiongt ltoption
value"BE"gtBelgiumlt/optiongt lt/selectgt
13
Buttons
  • A submit button ltinput type"submit"
    name"Submit" value"Submit"gt
  • A reset button ltinput type"reset"
    name"Submit2" value"Reset"gt
  • A plain button ltinput type"button"
    name"Submit3" value"Push Me"gt
  • submit send data
  • reset restore all form elements to their initial
    state
  • button take some action as specified by
    JavaScript

Note that the type is input, not button
14
Checkboxes
  • A checkbox ltinput type"checkbox"
    name"checkbox value"checkbox"
    checkedgt
  • type "checkbox"
  • name used to reference this form element from
    JavaScript
  • value value to be returned when element is
    checked
  • Note that there is no text associated with the
    checkboxyou have to supply text in the
    surrounding HTML

15
Radio buttons
  • Radio buttonsltbrgtltinput type"radio"
    name"radiobutton value"myValue1"gtmaleltbrgtltinp
    ut type"radio" name"radiobutton"
    value"myValue2" checkedgtfemale

16
Radio buttons
  • If two or more radio buttons have the same name,
    the user can only select one of them at a time
  • This is how you make a radio button group
  • If you ask for the value of that name, you will
    get the value specified for the selected radio
    button
  • As with checkboxes, radio buttons do not contain
    any text

17
Drop-down menu or list
  • A menu or listltselect name"select"gt
    ltoption value"red"gtredlt/optiongt ltoption
    value"green"gtgreenlt/optiongt ltoption
    value"BLUE"gtbluelt/optiongtlt/selectgt
  • Additional arguments
  • size the number of items visible in the list
    (default is "1")
  • multiple if set to "true", any number of items
    may be selected (default is "false")

18
Hidden fields
  • ltinput type"hidden" name"hiddenField"
    value"nyah"gt lt-- right there, don't you
    see it?
  • What good is this?
  • All input fields are sent back to the server,
    including hidden fields
  • This is a way to include information that the
    user doesnt need to see (or that you dont want
    her to see)
  • The value of a hidden field can be set
    programmatically (by JavaScript) before the form
    is submitted

19
A complete example
  • lthtmlgtltheadgtlttitlegtGet Identitylt/titlegtltmeta
    http-equiv"Content-Type" content"text/html
    charsetiso-8859-1"gtlt/headgtltbodygtltpgtltbgtW
    ho are you?lt/bgtlt/pgtltform method"post"
    action""gt ltpgtName ltinput type"text"
    name"textfield"gt lt/pgt ltpgtGender ltinput
    type"radio" name"gender" value"m"gtMale
    ltinput type"radio" name"gender"
    value"f"gtFemalelt/pgt lt/formgtlt/bodygtlt/htmlgt

20
THANK YOU
Write a Comment
User Comments (0)
About PowerShow.com