Dashboard Temp Share Shortlinks Frames API

HTMLify

Education Website (forked) - index.html
Views: 43 | 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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Courses - Home</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="#enroll" class="cta-button">Enroll Now</a></li>
            </ul>
        </nav>
    </header>
    <main>
        <section class="hero">
            <div class="hero-content">
                <h2>Master Modern Web Development in 12 Weeks</h2>
                <p>Launch your career with our intensive, project-based course designed for beginners and intermediate learners.</p>
                <a href="./course.html" class="btn primary">Explore Curriculum</a>
            </div>
            <div class="hero-image">
                <img src="placeholder-tech.svg" alt="Coding Illustration">
            </div>
        </section>

        <section class="features">
            <h3>Why Choose EduCourse?</h3>
            <div class="feature-grid">
                <div class="feature-item">
                    <span class="icon">&#9989;</span>
                    <h4>Expert Instructors</h4>
                    <p>Learn from industry veterans with years of real-world experience.</p>
                </div>
                <div class="feature-item">
                    <span class="icon">&#128187;</span>
                    <h4>Hands-on Projects</h4>
                    <p>Build a professional portfolio by completing 5 major projects.</p>
                </div>
                <div class="feature-item">
                    <span class="icon">&#128218;</span>
                    <h4>Lifetime Access</h4>
                    <p>Revisit materials, updates, and join our alumni community forever.</p>
                </div>
            </div>
        </section>

        <section id="enroll" class="cta-banner">
            <h3>Ready to Transform Your Career?</h3>
            <p>Limited seats available for the next cohort starting next month. Don't miss out!</p>
            <button class="btn primary" onclick="alert('Registration form simulation: Go to Course Page for details!')">Secure Your Spot</button>
        </section>
    </main>
    <footer>
        <p>&copy; 2024 EduCourse. All rights reserved. | <a href="./about.html">Privacy Policy</a></p>
    </footer>

  <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>