-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (75 loc) · 3.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InlandInfo</title>
<link rel="stylesheet" href="./one.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=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=Caveat&family=Playwrite+VN:wght@100..400&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="navbar">
<div class="logo">
<img src="./Screenshot 2024-12-13 080838.png" alt="InlandInfo Logo" style="height: 40px;">
</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#movies">Movies</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<header>
<h1>Inland Info</h1>
<p>........Weekly OTT Release info........</p>
</header>
<main>
<div class="card">
<div class="card-content">
<img src="https://s3.ap-south-1.amazonaws.com/media.thesouthfirst.com/wp-content/uploads/2024/11/I-Am-Kathalan.jpg" alt="I Am Kathalan movie poster"style="height: 420px; width: 290px;">
<h2>I Am Kathalan</h2>
<p>
Language: Malayalam Audio<br><br>
Platform: Manorama Max<br><br>
Genre: Crime Thriller<br><br>
Date: 27/01/2025
</p>
<a href="https://www.manoramamax.com/movies/detail/171077/i-am-kathalan" class="button">Watch Now</a>
</div>
</div>
<div class="card">
<div class="card-content">
<img src="https://assets-in.bmscdn.com/iedb/movies/images/mobile/thumbnail/xlarge/pani-et00404167-1720515291.jpg" alt="Pani movie poster" style="height: 420px; width: 290px;">
<h2>Pani</h2>
<p>
Language: Malayalam Audio<br><br>
Platform: Sony LIV<br><br>
Genre: Action Thriller<br><br>
Date: 16/01/2025
</p>
<a href="https://www.sonyliv.com/movies/pani-1090428925?utm_source=Google&utm_medium=WatchNow&utm_campaign=1090428925" class="button">Watch Now</a>
</div>
</div>
<div class="card">
<div class="card-content">
<img src="https://upload.wikimedia.org/wikipedia/en/c/cd/Rifle_Club_Poster.jpg" alt="Rifle Club movie poster" style="height: 420px; width: 290px;">
<h2>Rifle Club</h2>
<p>
Language: Malayalam Audio<br><br>
Platform: Netflix<br><br>
Genre: Action Thriller<br><br>
Date: 16/01/2025
</p>
<a href="https://www.netflix.com/in/title/81752390?source=35" class="button">Watch Now</a>
</div>
</div>
</main>
<footer>
<p>© 2025 Inlandinfo. All rights reserved.</p>
</footer>
</body>
</html>