Web development

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 …