Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  6. <title>A Static Email Form Example</title>
  7. <link rel="stylesheet" href="css/index.css">
  8. <script defer src="//unpkg.com/static.email"></script>
  9. <script defer src="js/index.js"></script>
  10. </head>
  11. <body>
  12. <h1>A Static Email Form Example</h1>
  13. <fieldset>
  14. <legend>Contact Me</legend>
  15. <form id="contact">
  16. <label>
  17. Your email address
  18. <input name="from" type="email" required>
  19. </label>
  20. <label>
  21. Your message (Markdown allowed)
  22. <textarea name="md" rows="10" required></textarea>
  23. </label>
  24. <input name="submit" type="submit">
  25. </form>
  26. </fieldset>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement