Tag Archives: Web development

HTML – Reset Buttons

HTML – Reset Buttons   The reset buttons are used for bigger forms usually, in case the user has mistyped the majority of the information introduced, therefore wanting to erase the entire introduced text. HTML <input type=”reset” value=”Reset” /><br /> <input type=”reset” value=”Delete” /><br /> <input type=”reset” value=”Clear form ” /> Demo HTML- The reset …

HTML – Submit Buttons

HTML – Submit Buttons   The submit buttons are another use of the <input> tag. Those will show a typical button, which will perform the action of sending the form. HTML <input type=”submit” value=”Submit” /><br /> <input type=”submit” value=”Send” /><br /> <input type=”submit” value=”Continue” /> Demo As you can see we made a variation of sending buttons, …

HTML – Select menu

HTML – Select menu   The ‘drop down’ lists are one of the most practical types of lists. You probably already came across them all over the internet, but without knowing they had a fancy name like this. HTML <select name=”my_html_select_box”> <option>New York </option> <option>Bucharest</option> <option>Madrid</option> </select> Demo New York Bucharest Madrid The browser will …