-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent-description5.html
77 lines (74 loc) · 3.89 KB
/
event-description5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BookItNow</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style1.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap" rel="stylesheet">
</head>
<body id="op">
<script src="https://kit.fontawesome.com/3a9c7718dd.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
<header>
<nav>
<h1>BOOK IT NOW</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Your Bookings</a></li>
<li><a href="#about-us">About</a></li>
<li><a href="#contact-us">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="eventdescription">
<a href="index.html" class="back"><i class="fa-solid fa-arrow-left"></i></a>
<h1 class="event-name">LIVE M1UC</h1>
<div class="img-wrapper">
<img src="live-music2.png" alt="music event poster" class="event-poster">
</div>
<p class="event-summary"><strong>Summary : </strong>A singer, composer and multi instrumentalist, Papon is one of the most sought after voices
in India today. His training in classical music and innovative experimentations in this field have made him an extremely
versatile artist. Papon derives his influence from a wide array of sounds- from traditional folk to new age electronica.
A sure stage scorcher , he is bound to engage and enthrall the audience with his rendition of popular ghazals and geets.
Truly a name to reckon with in the music scene today. The event is brought to you by Harmony Productions Pvt Ltd.</p>
<p class="event-location"><strong>Venue : </strong>Jio World Drive, Mumbai</p>
<p class="event-date"><strong>Date : </strong>23 September 2023</p>
<p class="event-time"><strong>Time : </strong>21:00</p>
<div class="book-wrapper">
<a href="bookingpage.html">
<button class="event-button" onclick="setValue(5)">Book Your Tickets Now</button></a>
</div>
</section>
<section class="about" id="about-us">
<h1>About Us</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequatur repellendus ex facere illo doloribus
porro, recusandae quidem eius? Harum velit pariatur minus sint nesciunt assumenda molestias, libero, unde
laboriosam consequuntur eius repellendus. Deserunt quis ipsa tempora cum perferendis. Corrupti vero commodi
quaerat! Neque ipsum ex, ullam eveniet illo natus laudantium. Dolorem aliquam esse recusandae nesciunt minus
doloremque aspernatur, neque temporibus aliquid omnis libero incidunt amet quibusdam dolores quidem corrupti
quia, sit voluptas perspiciatis ut reprehenderit molestiae accusantium? Natus aliquid atque facilis. Eius
quis molestias repellendus laudantium delectus ipsum, culpa placeat id distinctio et maxime, hic fugit iste
cum sunt architecto!</p>
</section>
<section class="contact" id="contact-us">
<h1>Contact Us</h1>
<div class="contact-container">
<div class="call">
<i class="fa-solid fa-phone"></i>
<span>9998887770</span>
</div>
<div class="mail">
<i class="fa-solid fa-envelope"></i>
<span>[email protected]</span>
</div>
</div>
</section>
<footer>
<p>© 2023 Book It Now</p>
</footer>
</body>
</html>