Coding Web Development

Friday, September 18, 2020

HTML Forms



  <body>
   <!-- Forms -->
    <h1>Get in Touch</h1>
    <h2>Contact Me</h2>
    <hr>
    <form action="mailto:jsn01000111@gmail.com" method="post" enctype="text/plain">
      <label>Your Name:</label>
      <input type="text" name="Name" value=""><br>
      <label>Your Email:</label>
      <input type="email" name="Email Address" value=""><br>
      <label>Your Message:</label><br>
      <textarea name="Message" rows="10" cols="30"></textarea><br>
      <input type="submit" name="">
    </form>
  </body>

Forms Demo

No comments:

Post a Comment

Tags