computer

Cards (49)

  • Used with button and data fields to enter data and sending it to the webpage
    Form
  • Give ability to choose or select only one option from many options
    Radio
  • In which u can type any text via keyboard on a webpage
    Textbox
  • To create an interactive webpage for register a student data you add............., ................ Used to input data
    Checkbox and textbox
  • To add student name input field you can add............... To a webpage
    Textbox
  • (*) symbol will be displayed instead of original text to secure
    Password
  • To choose your gender you can add.......... To a webpage
    Radio
  • ......... Is used to execute task or call JavaScript function
    Button
  • ........... Button is used to clear all previous data from all input fields
    Reset
  • To prevent the user from choosing or selecting more than one option you can add name attribute to radio Input field?
    True
  • To add a textbox field in order the user can enter his name you add ratio field?
    (False)
  • To select your proficiency language(s) you can add checkbox input field to a webpage?
    (True)
  • Name attribute used for display a text on the button?
    (False)
  • Submit button use to clear input fields from any previous data?
    (False)
  • To add student name field enter code
    <input type="text">
  • ....... Field is as the same as text field but (*) symbol will be displayed instead of characters to secure password key?
    Password
  • ....... Code is used to add a password field
    <input type="password">
  • .........Field is used to select one option such a gender (male/female)
    Radio button
  • To prevent the user from choosing or selecting more than one option you can add........... Attribute to radio button input field
    Name
  • ...... Is used to type any text via keyboard on a webpage
    Textbox
  • With the....... Element you can add a group of other elements to webpage such a buttons and fields used for data entry in order to send these data to storing
    Form
  • To add a password field write the following code:
    <input type="Password">
  • To add a ratio button field write the following code:
    <input type="radio">
  • To add an address input field write the following code :
    <input type="text">
  • To add the languages of students into the form you can add....... Input field by which he can select more than one choice
    Checkbox
  • ....... Attribute used for displaying a text on the button
    Value
  • To save HTML code as an information weblage we use....... Extension
    HTML/htm
  • the language used to make your registration webpage to interactive?
    JavaScript
  • used for displaying a dialogue box with message to the user
    Alert statement
  • used for displaying a text within the webpage contents
    document.write statement
  • html language isn't enough to make a confirmation to the data entry ( )
    true
  • Java Script statements must end with a semi-colon (;) ( )
    true
  • there isn't any difference between using small and capital letter while writing JavaScript statements ( )
    false
  • the "document.write" statement is used to display the message in the webpage itself ( )
    true
  • we use alert statements to display a message in the message box ( )
    true
  • if you want Java script statements to be implemented when an event is occurs (such as button click) you should use a
    Function
  • ............is JavaScript statements grouped together in a named block and preformed according to call it
    Function
  • ...............is an even used to call a function to execute java script statements
    Onclick
  • adding a value attribute to the button element for what is called a function ( )
    false
  • we use "onclick" attribute for writting a text on a button ( )
    false