0% found this document useful (0 votes)
5 views4 pages

BookMyShow Movie Ticket Booking

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

BookMyShow Movie Ticket Booking

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

HTML INPUT

<!DOCTYPE html>

<html>

<head>

<title>BookMyShow - Movie Booking</title>

</head>

<body>

<h1>🎬 Welcome to BookMyShow</h1>

<p>Your favourite movies, just a click away!</p>

<h2>Available Movies</h2>

<ul>

<li>Leo <a href="#booking">Book Now</a></li>

<li>Vikram <a href="#booking">Book Now</a></li>

<li>KGF 2 <a href="#booking">Book Now</a></li>

<li>RRR <a href="#booking">Book Now</a></li>

</ul>

<h2 id="booking">Book Your Tickets</h2>

<form>

<label>Select Movie:</label><br>

<select>

<option>Leo</option>

<option>Vikram</option>

<option>KGF 2</option>

<option>RRR</option>

</select><br><br>
<label>Select Date:</label><br>

<input type="date"><br><br>

<label>Show Time:</label><br>

<select>

<option>10:00 AM</option>

<option>2:00 PM</option>

<option>6:00 PM</option>

<option>9:00 PM</option>

</select><br><br>

<label>Number of Tickets:</label><br>

<input type="number" min="1" max="10"><br><br>

<input type="submit" value="Confirm Booking">

</form>

<p>© 2025 BookMyShow Clone | Created for Practice</p>

</body>

</html>

You might also like