HTMLify
Education Website (forked) - course.html
Views: 34 | Author: karbonsites
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 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Course Details - Web Development Mastery</title> <link rel="stylesheet" href="./style.css"> </head> <body> <header> <nav> <h1>EduCourse</h1> <ul> <li><a href="./index.html">Home</a></li> <li><a href="./course.html">The Course</a></li> <li><a href="./about.html">About Us</a></li> <li><a href="#pricing" class="cta-button">Pricing</a></li> </ul> </nav> </header> <main> <section class="course-header"> <h2>Web Development Mastery: Full Stack Bootcamp</h2> <p class="subtitle">HTML5, CSS3, JavaScript (ES6+), React, Node.js, and Databases.</p> </section> <section class="curriculum"> <h3>What You Will Learn</h3> <div class="module-list"> <details open> <summary>Module 1: Fundamentals (Weeks 1-3)</summary> <ul> <li>Semantic HTML5 & Accessibility</li> <li>Responsive Design with Flexbox & Grid</li> <li>CSS Preprocessors (SASS)</li> </ul> </details> <details> <summary>Module 2: JavaScript Deep Dive (Weeks 4-7)</summary> <ul> <li>ES6+ Features, Async/Await, Promises</li> <li>DOM Manipulation and Event Handling</li> <li>Introduction to Testing Frameworks</li> </ul> </details> <details> <summary>Module 3: Frontend Frameworks (Weeks 8-10)</summary> <ul> <li>Building modern UIs with React Hooks</li> <li>State Management (Context API)</li> <li>Building RESTful API Consumers</li> </ul> </details> <details> <summary>Module 4: Backend & Deployment (Weeks 11-12)</summary> <ul> <li>Node.js and Express Server Setup</li> <li>Database Integration (MongoDB)</li> <li>Deployment using modern CI/CD pipelines</li> </ul> </details> </div> </section> <section id="pricing" class="pricing-section"> <h3>Enroll Today</h3> <div class="price-card"> <h4>Standard Access</h4> <p class="price">$1999</p> <ul> <li>Full Course Content</li> <li>Community Support</li> <li>Certificate of Completion</li> </ul> <button class="btn secondary" onclick="document.getElementById('enrollForm').style.display='block';">Select Plan</button> </div> </section> <section id="enrollForm" class="enrollment-form-section" style="display:none;"> <h4>Enrollment Form</h4> <form id="enrollmentForm"> <label for="name">Full Name:</label> <input type="text" id="name" name="name" required> <label for="email">Email Address:</label> <input type="email" id="email" name="email" required> <button type="submit" class="btn primary">Confirm Enrollment</button> </form> </section> </main> <footer> <p>© 2024 EduCourse. All rights reserved. | <a href="./about.html">Contact</a></p> </footer> <script src="./app.js"></script> <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner"> <span>✨</span> <div>Built with <b>Karbon Sites</b></div> </a> </body> </html> |