Skip to content

Commit 4f8383b

Browse files
committed
Bookmyshowdemo
1 parent 2478b40 commit 4f8383b

9 files changed

Lines changed: 113 additions & 0 deletions

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5502
3+
}

BookMyShow/BookMyShow/img1.jpg

426 KB
Loading

BookMyShow/BookMyShow/img2.jpg

59.6 KB
Loading

BookMyShow/BookMyShow/img3.jpg

1.36 MB
Loading

BookMyShow/BookMyShow/img4.jpg

61.6 KB
Loading

BookMyShow/BookMyShow/img5.jpg

154 KB
Loading

BookMyShow/BookMyShow/img6.jpg

8.05 KB
Loading

BookMyShow/BookMyShow/index.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>BookMyshow</title>
7+
<link rel="stylesheet" href="style.css"/>
8+
</head>
9+
<body>
10+
<div>
11+
<div class="movies-container">
12+
<div class="image-container"><img src="img3.jpg" alt="Image 1">
13+
<h2>KGF 2</h2>
14+
<p>Rating: 8.5</p>
15+
<button style="background-color: blue; color: white;">Book Now</button>
16+
</div>
17+
<div class="image-container"><img src="img4.jpg" alt="Image 1">
18+
<h2>Bhool Bhulaiyaa 2</h2>
19+
<p>Rating: 8.5</p>
20+
<button style="background-color: blue; color: white;">Book Now</button>
21+
</div>
22+
<div class="image-container"><img src="img6.jpg" alt="Image 1">
23+
<h2>Aquaman</h2>
24+
<p>Rating: 8.5</p>
25+
<button style="background-color: blue; color: white;">Book Now</button>
26+
27+
</div>
28+
</div>
29+
<div class="movies-container ">
30+
<div class="image-container"><img src="img5.jpg" alt="Image 1">
31+
32+
<h2>Animal</h2>
33+
<p>Rating: 8.5</p>
34+
<button style="background-color: blue; color: white;">Book Now</button>
35+
</div>
36+
<div class="image-container"><img src="img5.jpg" alt="Image 1">
37+
<h2>Animal</h2>
38+
<p>Rating: 8.5</p>
39+
<button style="background-color: blue; color: white;">Book Now</button>
40+
41+
</div>
42+
<div class="image-container"><img src="img5.jpg" alt="Image 1">
43+
<h2>Animal</h2>
44+
<p>Rating: 8.5</p>
45+
<button style="background-color: blue; color: white;">Book Now</button>
46+
47+
</div>
48+
</div>
49+
50+
</div>
51+
52+
53+
54+
</body>
55+
</html>

BookMyShow/BookMyShow/style.css

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
body {
2+
font-family: Arial, sans-serif;
3+
margin: 0;
4+
padding: 0;
5+
background-color:red
6+
}
7+
8+
.movies-container {
9+
display: flex;
10+
justify-content: center;
11+
align-items: center;
12+
flex-wrap: wrap;
13+
padding: 20px;
14+
}
15+
16+
.image-container {
17+
width: 300px;
18+
margin: 10px;
19+
padding: 15px;
20+
background-color: #fff;
21+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
22+
text-align: center;
23+
border: 20px solid;
24+
}
25+
26+
.image-container img {
27+
width: 100%;
28+
height: auto;
29+
border-radius: 5px;
30+
}
31+
32+
.image-container h2 {
33+
margin-top: 10px;
34+
font-size: 1.5em;
35+
}
36+
37+
.image-container p {
38+
margin-top: 5px;
39+
color: #777;
40+
}
41+
42+
.image-container button {
43+
margin-top: 10px;
44+
padding: 8px 20px;
45+
border: none;
46+
background-color: #3498db;
47+
color: #fff;
48+
cursor: pointer;
49+
border-radius: 3px;
50+
transition: background-color 0.3s ease;
51+
}
52+
53+
.image-container button:hover {
54+
background-color: #2980b9;
55+
}

0 commit comments

Comments
 (0)