-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.html
More file actions
76 lines (70 loc) · 2.01 KB
/
Copy pathcss.html
File metadata and controls
76 lines (70 loc) · 2.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.movie-container {
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
}
.movie-container-1 {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
align-items:end;
flex-wrap: wrap;
}
.movie-card {
border: 1px black solid;
height: 620px;
width: 280px;
background-color: #f2f2f2;
border-radius: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 1);
text-align: center;
}
.movie-card:hover{
background-color: #ebebe0;
}
.star-img {
height: 20px;
width: 20px;
}
.movie-img {
width: 260px;
height: 300px;
border-radius:20px;
padding: 5px;
}
#text{
color:red;
font-size: 50px;
text-align: center;
margin-bottom: 20px;
}
</style>
</head>
<body>
<h1 id="text">Movies</h1>
<div class="movie-container">
<div class="movie-card">
<img src="movie-1.png" class="movie-img">
<h1>Adipurush</h1>
<h3><img src="star-1.png" class="star-img"> 2.7  <img src="star-2.png" class="star-img"> Rate</h3>
<div class="border">
<p>
<span>Director:</span> Om Raut | Stars: Prabhas, Kriti Sanon, Saif Ali Khan, Devdutta Nage<br>
<span>Language :</span> Telugu<br>
<span>Worldwide Collection :</span> 397.8cr<br>
<span>Verdict :</span> Average
</p>
</div>
<button class="btn">Watch Now!</button>
</div>
</body>
</html>