Skip to main content

Posts

Showing posts with the label HTML

Adding Combo Boxes in html.

Our second post is about adding C ombo Boxes in html. Here is the implementation of the logic. <!DOCTYPE html> <html>  <head>     <title>Input Field</Title>   </head>    <body>        <form>          Year:           <select name ="Year">              <option>value="x">First</option>              <option>value="y">Second</option>              <option>value="z">Third</option>           </select> </br> </br>           <input type="Submit" value="Submit">        </form>  </body> </html> Post any problem if encountered in the comments . Thanks for v...