You are on page 1of 2

Assingment 4

<html>
<head>
<title>Hotel Reservation</title>
<style type="text/css">
</style>
</head>
<body>
<center>
<h3>Welcome to Hotel Guru</h3>
<i><p>We providing you best services here.</p></i>
<h4>Please fill below details</h4>
<form action="" method="">
<input type="radio" value="Mr" name="gender"><label>Mr.</label>
<input type="radio" value="Mrs"
name="gender"><label>Mrs.</label>&nbsp;&nbsp;
<label>Enter your name:</label>
<input type="text" name="uname">&nbsp;&nbsp;
<label>Enter your surname:</label>
<input type="text" name="sname"><br><br>
<label>Enter your address:</label>
<textarea cols=63" rows="4"></textarea><br><br>
<label>Enter your country:</label>
<input type="text" name="country">&nbsp;&nbsp;
<label>Enter your city:</label>
<select>
<option>Maharashtra</option>
<option>Karnatka</option>
<option>Rajsthan</option>
<option>Madhya Pradesh</option>
<option>Aasam</option>
</select>
<br><br>
<label>Enter your contact:</label>
<input type="text" maxlength="13" name="contact">&nbsp;&nbsp;
<label>Enter your email:</label>
<input type="email" name="city"><br><br>
<label>Date of arrival:</label>
<input type="date" name="adate">
<label>Time of arrival:</label>
<input type="time" name="atime"><br><br>
<label>Date of departure:</label>
<input type="date" name="ddate">
<label>Time of departure:</label>
<input type="time" name="dtime"><br><br>
<input type="submit" value="submit">
<input type="reset" value="Reset">
</form>
</center>
</body>
</html>

Output:

You might also like