"Untitled"
Bootstrap 4.1.1 Snippet by digitalcvm6

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <h2>Create your snippet's HTML, CSS and Javascript in the editor tabs</h2> </div> </div><!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Medical Coding Courses in Maldives</title> <style> /* Base Styles */ body { background-color: #f3f3f3; font-family: "Lato", sans-serif; margin: 0; padding: 0; color: #333; } .container { width: 90%; max-width: 800px; margin: 30px auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .header { text-align: center; margin-bottom: 20px; } h1 { color: #007bff; margin-bottom: 10px; } .course-info p { line-height: 1.6; margin: 15px 0; } .btn { display: inline-block; padding: 10px 20px; background-color: #007bff; color: #fff; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s ease; } .btn:hover { background: #0056b3; } .details { display: none; background: #e9ecef; padding: 15px; border-radius: 5px; font-size: 0.95em; margin-top: 10px; } </style> </head> <body> <div class="container"> <div class="header"> <h1>Medical Coding Courses in Maldives</h1> <p>Discover IIM SKILLS' internationally accredited online program</p> </div> <div class="course-info"> <p> IIM SKILLS offers a comprehensive 3-month online Medical Coding course that equips you with global certifications from AAPC, AHIMA, and NHA. Benefit from flexible learning, a 1-month internship, and 100% placement support with over 550 hiring partners. </p> <button id="toggleDetails" class="btn">Show Course Details</button> <div id="courseDetails" class="details"> <p><strong>Course Duration:</strong> 3 months</p> <p> <strong>Fees:</strong> Self-Paced at 4,600 MVR (plus 18% tax) or Job Assist at 5,570 MVR (plus 18% tax) </p> <p> <strong>Certifications:</strong> CPC, CCA, CCS, COC, CIC, CRC, CEHRS </p> <p><strong>Internship:</strong> 1-month hands-on experience</p> <p> <strong>Placement Support:</strong> 550+ global hiring partners with 100% assistance </p> <p> <strong>Rating:</strong> 4.9/5 on Google </p> </div> </div> </div> <script> // Toggle display of course details document.getElementById("toggleDetails").addEventListener("click", function () { var detailsDiv = document.getElementById("courseDetails"); if (detailsDiv.style.display === "none" || detailsDiv.style.display === "") { detailsDiv.style.display = "block"; this.textContent = "Hide Course Details"; } else { detailsDiv.style.display = "none"; this.textContent = "Show Course Details"; } }); </script> </body> </html>
/* Base Styles */ body { background-color: #f3f3f3; font-family: "Lato", sans-serif; margin: 0; padding: 0; color: #333; } .container { width: 90%; max-width: 800px; margin: 30px auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .header { text-align: center; margin-bottom: 20px; } h1 { color: #007bff; margin-bottom: 10px; } .course-info p { line-height: 1.6; margin: 15px 0; } .btn { display: inline-block; padding: 10px 20px; background-color: #007bff; color: #fff; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s ease; } .btn:hover { background: #0056b3; } .details { display: none; background: #e9ecef; padding: 15px; border-radius: 5px; font-size: 0.95em; margin-top: 10px; }
// Toggle display of course details on button click document.getElementById("toggleDetails").addEventListener("click", function () { var detailsDiv = document.getElementById("courseDetails"); if (detailsDiv.style.display === "none" || detailsDiv.style.display === "") { detailsDiv.style.display = "block"; this.textContent = "Hide Course Details"; } else { detailsDiv.style.display = "none"; this.textContent = "Show Course Details"; } });

Questions / Comments: