Student registration form
<!DOCTYPEhtml>
<html>
<head>
<title>StudentRegistrationForm</title>
<script>
Window.onload=function(){
Alert(“HelloGoodMorning!”);
};
</script>
</head>
<body>
<h1>StudentRegistrationForm</h1>
<form>
<labelfor=”name”>Name:</label>
<inputtype=”text”id=”name”name=”name”required><br><br>
<labelfor=”email”>Email:</label>
<inputtype=”email”id=”email”name=”email”required><br><br>
<labelfor=”phone”>Phone:</label>
<inputtype=”tel”id=”phone”name=”phone”required><br><br>
<labelfor=”address”>Address:</label>
<textareaid=”address”name=”address”required></textarea><br><br>
<inputtype=”submit”value=”Submit”>
</form>
</body>
</html