HTML & CSS
You need < ...
Site Language: English
Українська
English
Русский
Programming Tests
Login
Sign Up
Programming Tests
Theory
Snippets
Papers
Landing
Android
Prices
FAQ
Cosmo Story
Terms and Conditions
Privacy Policy
Cookies Policy
Send Feedback
You need
to submit a form
to update data
including sensitive information (passwords).
Which HTTP method
is preferable
to use?
GET
POST
PUT
DELETE
Explanation
POST
offers
better security
because the submitted
data is not visible
in the
page address.
tag
page
address
sensitive
html
password
submit
form
data
element
Like
Login in
to like
Comment
Login in
to comment
Share
Tweet
Related Content
Consider following snippet: <form> <input type="text" size="7"/> </fomr> What does specifies the size attribute?
Select the correct <form> attribute which specifies that the browser should not validate the form. <!DOCTYPE html> <html> <body> <form action="/action_page.php" novalidate> E-mail: <input type="email" name="user_email"> <input type="submit"> </form> <p> <strong>Note:</strong> The novalidate attribute defines that the browser will not validate data which is entered into the form. The form tag is not supported in Internet Explorer 9 and earlier versions, or in Safari. </p> </body> </html>
What is the correct HTML element that allows to group related data in a form?
You need to submit a form to a server. Which attribute you will use to define the action to be performed when the form is submitted? <form ....="example_page.php">
What is the correct attribute to make input field unusable and unclickable?
H
TML & CSS
Quiz
Login to learn HTML & CSS
or
Read more about
HTML & CSS Quizzes
Follow CodeGalaxy
Mobile Beta
Send Feedback
Keep exploring
HTML & CSS quizzes
How to make a shadow for text in gray?
Which of the following is true about the pseudo-class :visited?
What is the difference between pseudo-elements :after and ::after?
What is the font-variant property for?
Which color will word "text" has? <style> p{ color: green !important; } #p{ color: blue; } </style> <p id="p" style="color: red">text</>
How to change the color of a link to blue when the cursor moves over it?
Sign Up Now
or
Subscribe for future quizzes
Login in to like
Login in to comment