<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style type="text/css"></style>
</head>
<body>
<h1>Landing Page By FUNL.CO</h1>
</body>
</html>
<!DOCTYPE html>
<html lang="mr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ICT Master - Online Course Creation</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
.header {
background-color: #1e4a7a;
color: white;
padding: 40px;
text-align: center;
}
.header h1 {
font-size: 2.5em;
}
.header p {
font-size: 1.2em;
}
.section {
padding: 40px;
margin: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.section h2 {
font-size: 2em;
color: #1e4a7a;
margin-bottom: 20px;
}
.section ul {
list-style: none;
padding: 0;
}
.section ul li {
font-size: 1.1em;
margin-bottom: 10px;
padding-left: 20px;
position: relative;
}
.section ul li:before {
content: '✔';
color: green;
position: absolute;
left: 0;
top: 0;
}
.cta {
background-color: #ff5722;
color: white;
padding: 20px;
text-align: center;
font-size: 1.5em;
border-radius: 10px;
margin-top: 20px;
}
.cta a {
color: white;
text-decoration: none;
}
.cta:hover {
background-color: #e64a19;
}
.bonus {
background-color: #e1f5fe;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.bonus h3 {
color: #1e4a7a;
}
.footer {
text-align: center;
padding: 20px;
background-color: #1e4a7a;
color: white;
}
</style>
</head>
<body>
<div class="header">
<h1>ICT MASTER</h1>
<p>तुमचं ज्ञान, तुमचं उत्पन्न!</p>
</div>
<div class="section">
<h2>कोर्समध्ये काय शिकाल?</h2>
<ul>
<li>कोर्ससाठी विषय कसा निवडावा?</li>
<li>मार्केट आणि ऑडियन्सचे संशोधन कसे करावे?</li>
<li>तुमच्या कोर्साची योजना कशी तयार करावी?</li>
<li>कोर्ससाठी कंटेंट कसे तयार करावे?</li>
<li>स्वतःची Learning Management System (LMS) तयार करा</li>
<li>पेमेंट गेटवे कसे सेट करावे?</li>
<li>तुमचा कोर्स कसा विकावा?</li>
</ul>
</div>
<div class="cta">
<p>आजच नोंदणी करा आणि तुमचं स्वप्न सत्यात आणा!</p>
<a href="https://www.ictmaster.in">आता नोंदणी करा</a>
</div>
<div class="bonus">
<h3>फ्री बोनस:</h3>
<ul>
<li>Website Development Course</li>
<li>Video Editing Course</li>
<li>Graphic Designing Course</li>
<li>Facebook Marketing Course</li>
</ul>
</div>
<div class="cta">
<p>तुमच्या कोर्स तयार करा आणि घरबसल्या उत्पन्न मिळवा!</p>
<a href="https://www.ictmaster.in">आजच नोंदणी करा</a>
</div>
<div class="footer">
<p>© 2024 ICT Master. सर्व हक्क सुरक्षित.</p>
</div>
</body>
</html>