can one explan work this three tag (method,div,span)?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

can one explan work this three tag (method,div,span)??

17th May 2018, 2:46 AM
Saman M Dusky
Saman M Dusky - avatar
3 Answers
+ 2
Taken directly from w3schools HTML <form> method Attribute ❮ HTML <form> tag Example Submit a form using the "get" method: <formaction="/action_page.php"method="get">   First name: <inputtype="text" name="fname"><br>   Last name: <inputtype="text" name="lname"><br>   <input type="submit"value="Submit"> </form> Try it Yourself » More "Try it Yourself" examples below. Definition and Usage The method attribute specifies how to send form-data (the form-data is sent to the page specified in the action attribute). The form-data can be sent as URL variables (with method="get") or as HTTP post transaction (with method="post"). Notes on GET: Appends form-data into the URL in name/value pairsThe length of a URL is limited (about 3000 characters)Never use GET to send sensitive data! (will be visible in the URL)Useful for form submissions where a user want to bookmark the resultGET is better for non-secure data, like query strings in Google Notes on POST: Appends form-data inside the body of the HTTP request (data is not shown is in URL)Has no size limitationsForm submissions with POST cannot be bookmarked
17th May 2018, 3:57 AM
BroFar
BroFar - avatar
+ 1
<div> is a block tag and or <span> inline tag
17th May 2018, 3:07 AM
BroFar
BroFar - avatar
+ 1
Robert Brown Farley (brofarops) thanks for answer :)
17th May 2018, 9:58 AM
Saman M Dusky
Saman M Dusky - avatar