Posts

Showing posts with the label Forrm

HTML Form Element

Image
HTML Form Element <!DOCTYPE html> <html> <body> <form action="/submit_page.php">   <select name="Codes">     <option value="yaak">Yaak</option>     <option value="developers">Developers</option>     <option value="coding">Coding</option>     <option value="html">Html</option>   </select>   <br><br>   <input type="submit"> </form> </body> </html>

Simple HTML Form Page

Image
Simple HTML Form Page <!DOCTYPE html> <html> <body> <form action="/submit_page.php">   First name:<br>   <input type="text" name="firstname" value="YAAK">   <br>   Last name:<br>   <input type="text" name="lastname" value="Developers">   <br><br>   <input type="submit" value="Submit"> </form>  <p>If you click the "Submit" button, the form-data will be sent to a page called "/sumbit_page.php".</p> </body> </html>