Created
July 22, 2025 19:23
-
-
Save thinkphp/fc0fec3b80caf12f3bc310aa62f6da80 to your computer and use it in GitHub Desktop.
contact form html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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