A Pen by yogarani03 on CodePen.
Created
June 23, 2025 07:46
-
-
Save yogarani03/8fe448bb6aa9903469f7b235c5dca354 to your computer and use it in GitHub Desktop.
registration.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>Registration Form</title> | |
</head> | |
<body> | |
<h2>Create Account</h2> | |
<form> | |
<label>Username:</label><br> | |
<input type="text" name="username"><br><br> | |
<label>Email:</label><br> | |
<input type="email" name="email"><br><br> | |
<label>Password:</label><br> | |
<input type="password" name="password"><br><br> | |
<button type="submit">Sign Up</button> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment