Posts

Showing posts with the label Form

Creating form with html/How-to

Image
After watching the video ....make sure you watch the video and above to learn more...down below are the source codes <!DOCTYPE html> <html> <head>   <title> form with html </title> </head> <body>   <form>     <label> Firstname: </label>     <input type= "text" name= "fn" required placeholder= "Your firstname..." />     <br/> <br/>     <label> Lastname: </label>     <input type= "text" name= "ln" required placeholder= "your last name.." />     <br/> <br/>    <label> Gender: </label>     <input type= "radio" name= "gen" /> male   <input type= "radio" name= "gen" /> female   <br/> <br/>    <label> Select Country </label>    <select>    ...