0% found this document useful (0 votes)
137 views19 pages

view-page-source.com-rolexcoderz.netlify.app_eng_

Page source PDF maths
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
137 views19 pages

view-page-source.com-rolexcoderz.netlify.app_eng_

Page source PDF maths
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 19

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RolexCoderZ</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
color: #fff;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(15px);
}

.nav-tabs {
display: flex;
justify-content: center;
margin-bottom: 30px;
}

.nav-tabs button {
padding: 14px 30px;
margin: 0 10px;
font-size: 1.2rem;
font-weight: bold;
color: #fff;
background: linear-gradient(90deg, #ff7eb3, #ff758c);
border: none;
border-radius: 30px;
cursor: pointer;
box-shadow: 0 6px 15px rgba(255, 117, 140, 0.5);
transition: all 0.3s ease;
}

.nav-tabs button:hover {
transform: scale(1.15);
background: linear-gradient(90deg, #ff758c, #ff7eb3);
box-shadow: 0 8px 20px rgba(255, 117, 140, 0.6);
}

.nav-tabs button.active {
background: linear-gradient(90deg, #ffd700, #ffac33);
box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
transform: scale(1.2);
}
.section {
display: none;
opacity: 0;
animation: fadeIn 0.6s ease forwards;
}

.section.active {
display: block;
opacity: 1;
}

.card {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 20px;
padding: 20px;
background: linear-gradient(145deg, #23243b, #191a29);
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
transition: transform 0.4s ease, box-shadow 0.4s ease;
overflow: hidden;
position: relative;
}

.card:hover {
transform: translateY(-10px) scale(1.05);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.card img {
width: 200px;
height: 130px;
border-radius: 15px;
object-fit: cover;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.card-content {
flex-grow: 1;
z-index: 1;
}

.card-content h3 {
margin: 0;
font-size: 1.6rem;
color: #ffd700;
}

.card-content p {
margin: 8px 0;
font-size: 1rem;
color: #c4c4d4;
}

.card-actions a {
display: inline-block;
padding: 10px 20px;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
color: #fff;
background: linear-gradient(90deg, #4caf50, #1de9b6);
border-radius: 10px;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(29, 233, 182, 0.5);
}

.card-actions a:hover {
background: linear-gradient(90deg, #1de9b6, #4caf50);
box-shadow: 0 6px 18px rgba(29, 233, 182, 0.7);
transform: scale(1.1);
}

.pdf-logo {
width: 70px;
height: 70px;
background: linear-gradient(145deg, #ff6b6b, #f56565);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: bold;
color: #fff;
box-shadow: 0 5px 15px rgba(255, 107, 107, 0.6);
z-index: 1;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes rotate {
0% {
transform: rotate(-45deg);
}
100% {
transform: rotate(315deg);
}
}

@media (max-width: 768px) {


.card {
flex-direction: column;
align-items: flex-start;
}

.card img {
width: 100%;
height: auto;
}
}
</style>
</head>
<body>

<div class="container">

<div class="nav-tabs">
<button class="active"
onclick="switchSection('videos')">Videos</button>
<button onclick="switchSection('notes')">Notes</button>
</div>

<div id="videos" class="section active">


<div class="card">
<img
src="https://cf-images.ap-southeast-1.prod.boltdns.net/v1/jit/6415636611001/920be1f
b-1e96-48e9-84ea-0f5938ab9e48/main/160x90/5m49s924ms/match/image.jpg" alt="Video
Thumbnail">
<div class="card-content">
<h3>A Letter to God Crash Course Class 10th English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4251745/1733812805_6669127390642374/sunny/
1733811949451_319070340622534500_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img
src="https://cf-images.ap-southeast-1.prod.boltdns.net/v1/jit/6415636611001/
d5353bb5-1b37-4e5e-8a81-dabc8ba9604c/main/160x90/19m1s117ms/match/image.jpg"
alt="Video Thumbnail">
<div class="card-content">
<h3>Poetic Devices - Crash Course Class 10th Grammar
English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4253545/1733940857_7033121976921162/sunny/
1733924007365_129353821078791460_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img
src="https://cf-images.ap-southeast-1.prod.boltdns.net/v1/jit/6415636611001/087ddf0
c-37b0-4c96-aefb-dcd90eeb2e5b/main/160x90/6m43s816ms/match/image.jpg" alt="Video
Thumbnail">
<div class="card-content">
<h3>Fire and Ice Crash Course Class 10th English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4276782/1736331426_5473233716376188/sunny/
1736330097093_197099440846746370_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Nelson Mandela Crash Course Class 10th English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4251746/1733812924_6140525597470411/sunny/
1733812178966_459089907257075460_video_VOD480p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Two Story About Flying Crash Course Class 10th English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4251747/1733812984_7813568048002038/sunny/
1733812286984_638131486549655400_video_VOD480p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>From The Diary if Anne Frank Crash Course Class 10th
English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4251744/1733812564_9405240253897293/sunny/
1733811791350_716782271842089600_video_VOD480p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Triump Of Surgery Crash Course Class 10th English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4251721/1733811669_6377962928970336/sunny/
1733811541382_52918433541798616_video_VOD360p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Thief Story Crash Course Class 10th English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4251720/1733811667_1057806415401295/sunny/
1733811467415_692067384261568600_video_VOD480p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Midnight Visitor Crash Course Class 10th English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4251719/1733811665_6029335743468548/sunny/
1733811392784_288872064705293500_video_VOD480p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Determiners Crash Course Class 10th English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4253578/1733948225_8521669959222553/sunny/
1733924899590_428071811491329700_video_VOD480p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Subject verb agreement Crash Course Class 10th English</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4253579/1733948884_2823229140783152/sunny/
1733924932578_151177171928495800_video_VOD.m3u8&id=RolexCoderZ" target="_blank"
id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Dust of Snow</h3>
<p>21-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4264816/1734724923_2825433205059306/sunny/
1734703434690_262103153668982400_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>The Trees Crash Course</h3>
<p>21-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4264823/1734723545_7219363522242197/sunny/
1734703578839_108078548756681700_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Tiger in the Zoo</h3>
<p>24-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4264830/1734724568_3184767951464150/sunny/
1734703894487_613668910112767000_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>The ball poem</h3>
<p>24-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4264821/1734725706_1724482114240255/sunny/
1734703559467_480625697031120200_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>How to Tell Wild Animals</h3>
<p>24-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4264833/1734726243_7506825549677102/sunny/
1734703980118_774783253298749800_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Glimpses of India</h3>
<p>24-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4264851/1734728046_4386884852151518/sunny/
1734705999051_632074669036653800_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Amanda</h3>
<p>24-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4264850/1734727744_5907593079194306/sunny/
1734705947769_421956682824980100_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Mijbil the Otter</h3>
<p>24-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4264817/1734724985_4825910924265795/sunny/
1734703460884_436374741398228700_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Two Gentlemen of Verona</h3>
<p>24-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4266239/1734950943_9036487778687420/sunny/
1734950887736_850281154888705000_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Mrs Packletide's Tiger</h3>
<p>24-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4266240/1734951004_9252964508964003/sunny/
1734950951137_792971009778331000_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>The Frog and the Nightingale</h3>
<p>25-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4267327/1735099875_9256700557341940/sunny/
1735099324207_33625927050285000_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Not Marble, Nor the Gilded Mountains</h3>
<p>25-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4267326/1735099873_9861991859780301/sunny/
1735099295725_613852473111631000_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Ozymandias</h3>
<p>25-12-2024</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4267325/1735099871_8802548625455708/sunny/
1735099274897_886792200289386100_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Bholi</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274264/1736092996_3735019783339238/sunny/
1736077707070_891106798368463600_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Fog</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274265/1736093104_4384985256802095/sunny/
1736077779082_508857149610710700_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Footprints Without Feet</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274266/1736093883_6895755692850579/sunny/
1736077842181_156380152369321660_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Meaning of Scientist</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274257/1736093224_8492794277975089/sunny/
1736077147564_472756965082054460_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>A Question of Trust</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274259/1736093404_1250635928417320/sunny/
1736077261271_502661971259156350_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>The Necklace</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274261/1736093644_9560971891368266/sunny/
1736077412990_523480438614458750_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>The Proposal</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274262/1736092504_4367986689208953/sunny/
1736077517655_539028473760344260_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>For Anne Gregory</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4276779/1736330884_6232699255388216/sunny/
1736327698067_890188066385735400_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Madam Rides the Bus</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4276780/1736331124_9757160315394537/sunny/
1736328201541_414464910712537000_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>The Tale of Custard the Dragon</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4276781/1736331304_7127373976208863/sunny/
1736328689204_61900352842252856_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Fire and Ice</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4276782/1736331426_5473233716376188/sunny/
1736330097093_197099440846746370_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>The Sermon at Benaras</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4276783/1736331724_3801453607884863/sunny/
1736330167720_396076506338308740_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Error Correction</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274224/1736091963_9735582651178524/sunny/
1736076818979_281643245727468960_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Reported Speech</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274222/1736090884_5867749472320186/sunny/
1736076649664_848121367528233000_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Subject Verb Agreement</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274223/1736091483_3365574023283278/sunny/
1736076784302_153862875780487100_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Models</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4276673/1736326084_2153988996921084/sunny/
1736324540384_455686712491424960_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>Patol Babu</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274273/1736094183_5493624989195366/sunny/
1736079952596_368792336154628700_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>A Shady Plot</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">
<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4276764/1736329984_7503880013004136/sunny/
1736329009963_245369703423326940_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>The Letter</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playz/?url=https://d3cx6qbbd4cbso.cloudfront.
net/file_library/videos/vod_non_drm_ios/4274274/1736094185_5735778037601183/sunny/
1736080032260_376445638585879940_video_VOD240p30.m3u8&id=RolexCoderZ"
target="_blank" id="watchLectureButton">Watch Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>English Doubt Session</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://rolexcoderz.netlify.app/playx/?url=https://d1qcficr3lu37x.cloudfront.
net/file_library/videos/channel_vod_non_drm_hls/4274270/173608092211731097666/
index_1.m3u8&id=RolexCoderZ" target="_blank" id="watchLectureButton">Watch
Lecture</a>
</div>
</div>
<div class="card">
<img src="#" alt="Video Thumbnail">
<div class="card-content">
<h3>⚡ More Lectures</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a href="https://rolexcoderz.netlify.app/eng2/" target="_blank"


id="watchLectureButton">Watch Lecture</a>
</div>
</div>
</div>

<div id="notes" class="section">


<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Midnight Visitor</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">
<a
href="https://dxixtlyravvxx.cloudfront.net/540admin_v1/file_manager/pdf/
416456882918510400.pdf" target="_blank" id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Thief Story</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540admin_v1/file_manager/pdf/
597354045114689500.pdf" target="_blank" id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Diary of Anne Frank</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540/admin_v1/file_manager/pdf/
6824155Class%2010%20Diary%20of%20Anne%20Frank.pdf.pdf_Class%2010%20Diary%20of
%20Anne%20Frank.pdf.pdf" target="_blank" id="downloadNotesButton">Download
Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>A letter to god</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540/admin_v1/file_manager/pdf/
3141029Class%2010%20English%20chapter%201%20letter%20%20to%20god.pdf.pdf_Class
%2010%20English%20chapter%201%20letter%20%20to%20god.pdf.pdf" target="_blank"
id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Two stories about flying</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540/admin_v1/file_manager/pdf/
912162Class%2010%20Two%20stories%20about%20flying.pdf.pdf_Class%2010%20Two
%20stories%20about%20flying.pdf.pdf" target="_blank"
id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Nelson Mandela</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540/admin_v1/file_manager/pdf/
5502009Class%2010NelsonMandela.pdf.pdf_Class%2010NelsonMandela.pdf.pdf"
target="_blank" id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Amanda</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540admin_v1/file_manager/pdf/
395031907997568500.pdf" target="_blank" id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Glimpses of india</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540admin_v1/file_manager/pdf/
625340327694686000.pdf" target="_blank" id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>How to tell wild animals</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540admin_v1/file_manager/pdf/
251080599146297150.pdf" target="_blank" id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Mrs Packletide's Tiger</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540/admin_v1/file_manager/pdf/3534086Mrs
%20Packletide%27s%20Tiger.pdf_Mrs%20Packletide%27s%20Tiger.pdf" target="_blank"
id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Not Marble, Nor the Gilded Mountains</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540/admin_v1/file_manager/pdf/2227042Not
%20Marble%2C%20Nor%20the%20Gilded%20Mountains.pdf_Not%20Marble%2C%20Nor%20the
%20Gilded%20Mountains.pdf" target="_blank" id="downloadNotesButton">Download
Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>Two Gentlemen of Verona</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540/admin_v1/file_manager/pdf/2389657Two
%20Gentlemen%20of%20Verona.pdf_Two%20Gentlemen%20of%20Verona.pdf" target="_blank"
id="downloadNotesButton">Download Notes</a>
</div>
</div>
<div class="card">
<div class="pdf-logo">PDF</div>
<div class="card-content">
<h3>The Frog and the Nightingale</h3>
<p>×× Pᴏᴡᴇʀᴇᴅ Bʏ @RolexCoderZ</p>
</div>
<div class="card-actions">

<a
href="https://dxixtlyravvxx.cloudfront.net/540/admin_v1/file_manager/pdf/2487679The
%20Frog%20and%20the%20Nightingale.pdf_The%20Frog%20and%20the%20Nightingale.pdf"
target="_blank" id="downloadNotesButton">Download Notes</a>
</div>
</div>
</div>
</div>
<script>var
_0xc31e=["","split","0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+/","slice","indexOf","","",".","pow","reduce","reverse","0"];function
_0xe67c(d,e,f){var g=_0xc31e[2][_0xc31e[1]](_0xc31e[0]);var h=g[_0xc31e[3]]
(0,e);var i=g[_0xc31e[3]](0,f);var j=d[_0xc31e[1]](_0xc31e[0])[_0xc31e[10]]()
[_0xc31e[9]](function(a,b,c){if(h[_0xc31e[4]](b)!==-1)return a+=h[_0xc31e[4]]
(b)*(Math[_0xc31e[8]](e,c))},0);var k=_0xc31e[0];while(j>0){k=i[j%f]+k;j=(j-(j
%f))/f}return k||_0xc31e[11]}eval(function(h,u,n,t,e,r){r="";for(var
i=0,len=h.length;i<len;i++){var s="";while(h[i]!==n[e]){s+=h[i];i++}for(var
j=0;j<n.length;j++)s=s.replace(new
RegExp(n[j],"g"),j);r+=String.fromCharCode(_0xe67c(s,e,10)-t)}return
decodeURIComponent(escape(r))}
("cLccSkkckkSkcLcLSkkckLSkckkLSkcLkkSkkckcSkcLkcSkckLcScckkSkkcLkSkkckkSkkckkSkLcLL
SkckkkSkkckcSkcLkcSkckLcSkLcckSkcLLLSkckLkSkckLcSkkckcSkcLkcSkkckcSkckLLSckckSckLkS
kLkccSkkLLkSkLcccSkLkckSkcLcLSkcLkcSkckLcSkkckcSkcLkcSkckLcSkLcckSkcLcLSkkcLkSkkckk
SkkckcSkkckkSckLkSccLcScLccSkkccLSkckkLSkcLkcSkkckLSkckLcSkcLLLSkcLcLSkcLkcScLccSck
ckSckccScLccSkccLLScLccSkkckkSkcLcLSkkckLSkckkLSkcLkkSkkckcSkcLkcSkckLcScckkSkcLccS
kckkLSkkckcSkckLLSkckckSkkLkcSkkckcSkcLkLSkkckcSkkckLSkckLcSkcLcLSkckLLSkLkkcSkcLkL
SkcLkLSckckSckLkSkcLLLSkcLkkSkkcckSckLkSckccScckkSkkccLSkcLcLSkckLLSkLcLLSkkcLkSkkc
kLSkkcccSckckSkkccLSkckkLSkcLkcSkkckLSkckLcSkcLLLSkcLcLSkcLkcScLccSckckSkcLLLSkcLkk
SkkcckSckccScLccSkccLLScLccSkcLLLSkcLkkSkkcckScckkSkckLkSkckLLSkkckLScLccSkLkLkScLc
cSckLkSkkcccSkckLcSkckLcSkcLckSkckLkSkLLckScckcScckcSkcLLLScckkSkcLckSkcLcLSkckLkSk
ckLcSkcLLLSkcLkkSkkcckScckkSkkckLSkkckLScckcSkkkLkSkLckcSkcLkcSkkLLLSkkkLLSkLcckSkk
kLkSkcLccScckcSkLckkSkLcccSkLcLcScckLSccccScccLSccccSkLLLcScccLSccckScccLSkLLkLScck
LSccckSccccSccccSkLLLkScccLSkLLkcScckLSkLLkcSccckSkLLLcScckkSkcLckSkcLkcSkkcckSckLk
SkLLccScLccSkccLcSckccSkLLccScLccSkccLcSckccSkLLccScLccS",58,"LkcSJYaIr",30,3,9))</
script>
<script>
function switchSection(sectionId) {
document.querySelectorAll('.nav-tabs button').forEach(button =>
button.classList.remove('active'));
document.querySelectorAll('.section').forEach(section =>
section.classList.remove('active'));

document.querySelector(`.nav-tabs button[onclick="switchSection('$
{sectionId}')"]`).classList.add('active');
document.getElementById(sectionId).classList.add('active');
}
</script>

</body>
</html>

You might also like