-
Notifications
You must be signed in to change notification settings - Fork 0
/
page2.html
89 lines (83 loc) · 4.24 KB
/
page2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/styles.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
</head>
<body>
<img src="images/festivaltickethublogo.png">
<div id="home"><a href="index.html">Home</a></div>
<div class="row">
<div class="col-md-2">
<img src="images/holiphoto.jpeg">
</div>
<div class="col-md-10">
<p id="desc">There are varying accounts of Holi’s origin mentioned in several works of ancient Indian literature. According to one popular version of the story, an evil king became so powerful that he forced his subjects to worship him as their god. But to the king’s ire, his son Prahlada continued to be an ardent devotee of the Hindu deity Lord Vishnu. The angry king plotted with his sister, Holika, to kill his son. Holika, who was immune to fire, tricked Prahlada to sit in a pyre with her. When the pyre was lit, the boy’s devotion to Lord Vishnu helped him walk away unscathed while Holika, from whom the festival derives its name, was burned to death despite her immunity.
Holi has become increasingly popular outside of India — in large part because of the millions of Indians and other South Asians living all over the world. As with Diwali, another Indian festival, communities with South Asian heritage living abroad often get together to celebrate Holi.</p>
</div>
<div class="row">
<div class="col" id="bookTickets">
<h1>BOOK TICKETS TODAY</h1>
<a href="payment.html"><input id="completeOrder" type="button" name="process-order" value="BUY TICKETS" class="btn btn-success"/></a>
</div>
</div>
<div class="row">
<div class="col">
<form id="ticket" style="width:300px; margin:auto">
<label>Select your ticket</label>
<select id="size" name="size" class="form-control">
<option id="regular" data-pick="regular" value="1000">Regular</option>
<option id="vip" data-pick="vip"value="2000">VIP</option>
<option id="vvip" data-pick="vvip"value="5000">VVIP</option>
</select>
</form>
</div>
</div>
<div class="row">
<div class="col">
<form id="quantity" style="width:300px; margin:auto">
<label>Select number of tickets</label>
<select id="size" name="size" class="form-control">
<option id="1" data-pick="one" value="1">One</option>
<option id="2" data-pick="two"value="2">Two</option>
<option id="3" data-pick="three"value="3">Three</option>
</select>
</form>
</div>
</div>
<div class="row" id="contacts">
<div class="col">
<footer>
<div id="socialMediaLinks">
<p>Find Us On Social Media</p>
<img src="images/facebook.png" alt="fb">
<img src="images/flickr.png" alt="flickr">
<img src="images/pinterest.png" alt="pinterest">
<img src="images/twitter.png" alt="twitter">
<img src="images/you_tube.png" alt="youtube">
</div>
<div id="complaintsContact">
<p>Customer Care</p>
<p>Phone Number:0720863632</p>
<p>Email:[email protected]</p>
</div>
<div id="bookingsContact">
<p>For Bookings and Promotions:</p>
<p>Phone Number:0720867345</p>
<p>Email:[email protected]</p>
</div>
<div id="copyright">
<p>Copyright:Ticket Festival Hub</p>
<p>2021</p>
</div>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>