<!
DOCTYPE html> <html> <head> <title>Data Entry Form</title> <style> body {
font-family: Arial, sans-serif; background: #f4f4f4; } form { background: #fff;
padding: 20px; width: 350px; margin: 40px auto; border-radius: 5px; } input,
textarea, button { width: 100%; padding: 8px; margin-top: 10px; } button {
background: #4CAF50; color: white; border: none; cursor: pointer; } </style> </head>
<body> <form> <h2>Data Entry Form</h2> <label>Full Name</label> <input type="text"
placeholder="Enter full name" required> <label>Email</label> <input type="email"
placeholder="Enter email" required> <label>Phone Number</label> <input type="text"
placeholder="Enter phone number"> <label>Address</label> <textarea
placeholder="Enter address"></textarea> <label>Remarks</label> <textarea
placeholder="Enter remarks"></textarea> <button type="submit">Submit</button>
</form> </body> </html>