Posts

Showing posts from January, 2024

wt lab

  HTML CODE: <html> <head>     <title>Registration Form</title>     <link rel="stylesheet" type="text/css" href="RegistrationForm.css">     <link rel="icon" type="image/x-icon" href="C:\Users\svbal\Downloads\wallpaper\icon.jpg">   </head> <body>     <div class="container">         <h2>Registration Form</h2>         <form id="registrationForm" onsubmit="return validateForm()" method="post" action="RegistrationForm.php">             <label for="fullName">Full Name:</label>             <input type="text" id="fullName" name="fullName" required><br><br>            ...