Home » Blog » Simple Design Contact Form

Simple Design Contact Form

<html>
	<head>
		<title>Contact Form</title>
		<style type="text/css">
		td
		{
			font-size: 15pt;
		}
		</style>
	</head>
	<body align="center" bgcolor="#83ccd2">
		
		<h2><b><u>CONTACT FORM</u></b></h2>
		<form method="post" name="contactform" action="cform.php">
		<table align="center" border=3 bordercolor="black">

			<tr>
				<td>Name : </td>
				<td><input type="text" name="name" placeholder="Firstname Secondname Lastname" size="40"  required></td>
			</tr>
			
			<tr>
				<td>Email : </td>
				<td><input type="email" name="email" placeholder="abc123@gmail.com" size="40" required></td>
			</tr>

			<tr>
				<td>Mobile No. : </td>
				<td><input type="number" name="mno" placeholder="0123456789" required></td>
			</tr>

			<tr>
				<td>Message : </td>
				<td><textarea rows="7" cols="25" name="msg" placeholder="Write Your Message Here"></textarea></td>
			</tr>

			<tr>
				<td><input type="submit" name="submit" value="SUBMIT"></td>
				<td><input type="reset" name="reset" value="RESET"></td>
			</tr>
			
		</table>
		</form>

	</body>
</html>

OutPut

Leave a Reply

Your email address will not be published.