File size: 3,838 Bytes
26c453d |
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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
<!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">
<!-- required -->
<link rel="icon" type="image/png" href="/assets/images/sanket-logo.png">
<title>Sanket - Learn - Months</title>
<style>
#loader {
width: 70px;
height: 70px;
animation: spin 1s linear infinite;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
.center {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
</style>
<script>
document.onreadystatechange = function() {
if (document.readyState !== "complete") {
document.querySelector(
"body").style.visibility = "hidden";
document.querySelector(
"#loader").style.visibility = "visible";
} else {
document.querySelector(
"#loader").style.display = "none";
document.querySelector(
"body").style.visibility = "visible";
}
};
</script>
<style>
@font-face {
font-family: "Poppins";
src: url("/assets/fonts/Poppins-Regular.ttf");
}
body {
font-family: 'Poppins';
background-color: #D3F1E9 !important;
display: flex;
flex-direction: column;
text-align: center;
color: #193053;
}
#back-arrow img {
width: 1.3rem;
}
#back-arrow {
position: absolute;
color: #193053;
top: 10px;
left: 10px;
font-size: 0.2rem;
font-weight: 600;
text-decoration: none;
padding: 5px;
border: 2px solid #193053;
border-radius: 100%;
}
#underline {
margin: auto;
margin-top: -1rem;
border-bottom: 0.35rem solid #193053;
border-radius: 1rem;
width: 5rem;
}
ul {
list-style-type: none;
margin-top: 2rem;
padding: 0;
}
ul li {
padding-bottom: 1.5rem;
}
iframe {
width: 100%;
height: 15rem;
margin: auto;
border: 2px red;
border-radius: 18px;
}
@media only screen and (min-width: 1080px) {
iframe {
max-width: 40%;
}
}
</style>
</head>
<body>
<!-- loader -->
<img src="/assets/images/sanket-logo.png" id="loader" class="center" alt="loader" srcset="">
<a href="/learn" id="back-arrow"><img src="https://uxwing.com/wp-content/themes/uxwing/download/arrow-direction/back-arrow-icon.png" alt="back"></a>
<h1>Months</h1><span id="underline"></span>
<ul>
<li><iframe width="560" height="315" src="https://www.youtube.com/embed/x58C6-ZtW_8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe></li>
<li> <iframe width="560" height="315" src="https://www.youtube.com/embed/VzT2IHrCXPg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</li>
</ul>
</iframe>
</body>
</html> |