0% found this document useful (0 votes)
5 views

!Doctype HTML

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

!Doctype HTML

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">
<head>
<title>Admission Form</title>
<style>
h1 {
text-align: center;
color: Red;
}
label {
font-weight: bold;
}
input[type="submit"] {
background-color: blue;
color: white;
}
img {
top: 10px;
right: 10px;
width: 100px;
height: auto;
}
</style>
</head>
<body>
<h1>Gyan Bharati School</h1>
<form action="#" method="post">
<img src="C:\Users\Eternal Viper\Desktop\GBS.jpg">
<label for="child-name">Name of Child:</label><br>
<input type="text" id="child-name" name="child-name" required><br><br>

<label for="father-name">Father's Name:</label><br>


<input type="text" id="father-name" name="father-name" required><br><br>

<label for="mother-name">Mother's Name:</label><br>


<input type="text" id="mother-name" name="mother-name" required><br><br>

<input type="submit" value="Submit">


</form>
</body>
</html>

You might also like