Page 392 - Web Applications (803) Class 11
P. 392
Name:<input type=”text” id=”name” name=”name”><br><br>
Age: <input type=”text” id=”age” name=”age”><br><br>
Email id: <input type=”text” id=”emailid” name=”emailid”><br><br>
<button type=”button”>Submit</button><br><br>
<p>© 2023 Readers Club</p>
</body> <html>
Contactus.html
<html>
<head>
<title>Readers Club - Contact Us</title>
</head>
<body bgcolor=pink>
<h1>Readers Club</h1>
<ul>
<li><a href=”home.html”>Home</a></li>
<li><a href=”books.html”>Books</a></li>
<li><a href=”joinus.html”>Join Us</a></li>
</ul>
<h2>Contact Us</h2>
<p>Have a question or comment? Fill out the form below to get in touch
with us:</p>
<form>
Name:<input type=”text” id=”name” name=”name”><br><br>
Email:<input type=”email” id=”email” name=”email”><br><br>
Message:<textarea id=”message” name=”message”></textarea><br><br>
<input type=”submit” value=”Submit”>
</form>
<br><br>
<p>© 2023 Readers Club</p>
390 Touchpad Web Applications-XI

