registration form
<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h2>Registration form</h2>
<form>
<label for="name">Enter your Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your full name"><br><br>
<label for="surname">Enter your Surname:</label>
<input type="text" id="surname" name="surname"><br><br>
<label for="address">Enter your address:</label><br>
<textarea id="address" name="address" rows="5" cols="40"></textarea><br><br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>