<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h2>Register for Our Website</h2>
<form action=”process_registration.php” method=”POST”>
<label for=”username”>Username:</label>
<input type=”text” id=”username” name=”username” required><br><br>

<label for=”email”>Email:</label>
<input type=”email” id=”email” name=”email” required><br><br>

<label for=”password”>Password:</label>
<input type=”password” id=”password” name=”password” required><br><br>

<input type=”submit” value=”Register”>
</form>
</body>
</html>