Skip to content

Instantly share code, notes, and snippets.

@thinkphp
Created July 22, 2025 19:23
Show Gist options
  • Save thinkphp/fc0fec3b80caf12f3bc310aa62f6da80 to your computer and use it in GitHub Desktop.
Save thinkphp/fc0fec3b80caf12f3bc310aa62f6da80 to your computer and use it in GitHub Desktop.
contact form html
<!DOCTYPE html>
<html>
<head>
<title>Contact Form</title>
</head>
<body>
<form action="contact.php" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea><br><br>
<button type="submit">Send</button>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment