-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmovies.html
More file actions
57 lines (50 loc) · 2.49 KB
/
Copy pathmovies.html
File metadata and controls
57 lines (50 loc) · 2.49 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
<!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">
<link rel="shortcut icon" href="https://img.icons8.com/material/150/000000/video.png" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Movies</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/scialmedia.css">
<!-- <link rel="stylesheet" href="./css/"> -->
</head>
<body class="bg-dark" onload="preloader()" >
<div id="preloader" style="z-index: 1000;">
<h3 class="text-white loading animate__animated animate__pulse animate__infinite">Loading...</h3>
</div>
<script>
let preload = document.getElementById("preloader");
function preloader() {
preload.style.display = "none";
}
</script>
<div class="mainbody r1">
<h1 class="heading text-white text-center p-3">Watch Movies</h1>
<div class="cardsbody">
<a href="https://www.netflix.com/in/" style="text-decoration:none">
<div class="card p-3 r1">
<img src="https://img.icons8.com/ios/130/000000/netflix--v1.png" class="cardimg"/>
<h3 class="headcard text-center">Netflix</h3>
</div>
</a>
<a href="https://www.primevideo.com/" style="text-decoration:none">
<div class="card p-3 r1">
<img src="https://img.icons8.com/ios-filled/130/000000/amazon-prime-video.png" class="cardimg"/>
<h3 class="headcard text-center">Amazon Prime</h3>
</div>
</a>
<a href="https://www.hotstar.com/in" style="text-decoration:none">
<div class="card p-3 r1">
<img src="https://img.icons8.com/ios-filled/130/000000/disney-plus.png" class="cardimg">
<h3 class="headcard text-center">Hotstar</h3>
</div>
</a>
</div>
</div>
</body>
</html>