-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarry_my_husband.html
117 lines (108 loc) · 4.78 KB
/
marry_my_husband.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marry My Husband - Drama Episodes</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #ff6f61;
text-align: center;
}
.info {
margin-bottom: 20px;
}
.info p {
margin: 5px 0;
}
.episodes {
margin-bottom: 20px;
}
.episodes ul {
list-style: none;
padding: 0;
}
.episodes ul li {
margin-bottom: 10px;
}
.countdown {
font-size: 24px;
text-align: center;
color: #ff6f61;
}
</style>
</head>
<body>
<div class="container">
<h1>Marry My Husband - Drama Episodes</h1>
<div class="info">
<p><strong>Drama:</strong> Marry My Husband</p>
<p><strong>Country:</strong> South Korea</p>
<p><strong>Episodes:</strong> 16</p>
<p><strong>Aired:</strong> Jan 1, 2024 - Feb 20, 2024</p>
<p><strong>Aired On:</strong> Monday, Tuesday</p>
<p><strong>Original Network:</strong> TVING, tvN</p>
<p><strong>Duration:</strong> 1 hr. 10 min.</p>
<p><strong>Subtitle:</strong> Bangla+English</p>
</div>
<div class="episodes">
<h2>Episodes</h2>
<ul>
<li><a href="https://teraboxapp.com/s/1QuSaKrD8Pzp12WweHoqzEA">Episode 1</a></li>
<li><a href="https://teraboxapp.com/s/1oQ-2xXYow8l8Oyi5-6zzSw">Episode 2</a></li>
<li><a href="https://teraboxapp.com/s/1vw8x9NdBwPzErThlKru4Dw">Episode 3</a></li>
<li><a href="https://teraboxapp.com/s/1PfU32Th2yiyEmhGsD8CM1w">Episode 4</a></li>
<li><a href="https://teraboxapp.com/s/1iqcXxA5EXyc8lq73G0F3PA">Episode 5</a></li>
<li><a href="https://teraboxapp.com/s/1KZjt1WVwYTeI6ojfER9Pqw">Episode 6</a></li>
<li><a href="https://teraboxapp.com/s/1xebbda_jXkdCTzTzKMkSjQ">Episode 7</a></li>
<li><a href="https://teraboxapp.com/s/1I9SHjYtSQaxp4PEOjujgDg">Episode 8</a></li>
<li><a href="https://teraboxapp.com/s/1CfxkwmUhweRNuW3bpVB-OA">Episode 9</a></li>
<li><a href="https://teraboxapp.com/s/1eh7F_tDSF3L1n6CSgGC0tw">Episode 10</a></li>
<li><a href="https://teraboxapp.com/s/1iipNJSFXBaZu6_Dj943Vsw">Episode 11</a></li>
<li><a href="https://teraboxapp.com/s/1bekjql6WY7nYniO29eg4TA">Episode 12</a></li>
<li><a href="https://teraboxapp.com/s/18ysIgUEQ_SgJTXi1s7OOBw">Episode 13</a></li>
<li><a href="https://teraboxapp.com/s/1mw2CeSa_8599wGk-wXN2WA">Episode 14</a></li>
</ul>
</div>
<div class="countdown" id="countdown"></div>
</div>
<script>
// Set the countdown end date (3 days, 21 hours, 20 minutes from now)
const countdownDate = new Date().getTime() + (3 * 24 * 60 * 60 * 1000) + (21 * 60 * 60 * 1000) + (20 * 60 * 1000);
// Update the countdown every second
const countdownInterval = setInterval(function() {
// Get the current date and time
const now = new Date().getTime();
// Calculate the time remaining until the countdown date
const distance = countdownDate - now;
// Calculate days, hours, minutes, and seconds
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Display the countdown in the element with id="countdown"
document.getElementById("countdown").innerHTML = "Next episode in: " + days + "d " + hours + "h " + minutes + "m " + seconds + "s ";
// If the countdown is over, stop updating it
if (distance < 0) {
clearInterval(countdownInterval);
document.getElementById("countdown").innerHTML = "EXPIRED";
}
}, 1000); // Update every second
</script>
</body>
</html>