<form >
<h1>Registration Form</h1>
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="email@example.com" required><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Min. 8 characters" required><br><br>
<label for="age">Age:</label>
<input type="number" id="age" name="age" min="1" max="100"><br><br>
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob"><br><br>
<label>Gender
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
<input type="radio" name="gender" value="other"> Other</label><br><br>
<label>Skills
<input type="checkbox" name="skills" value="html"> HTML
<input type="checkbox" name="skills" value="css"> CSS
<input type="checkbox" name="skills" value="js"> JS</label><br><br>
<label for="message">Message</label><br>
<textarea name="Message box" placeholder="message" ></textarea><br><br>
<button type="submit">Submit Form</button>
</form>