Dashboard Temp Share Shortlinks Frames API

HTMLify

Education Website (forked) - about.html
Views: 23 | 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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About Us - EduCourse</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="./index.html#enroll" class="cta-button">Enroll Now</a></li>
            </ul>
        </nav>
    </header>
    <main>
        <section class="about-intro">
            <h2>Our Mission: Bridging the Skills Gap</h2>
            <p>EduCourse was founded in 2020 by developers who saw a need for practical, job-ready technical training outside of traditional academia. We focus relentlessly on what employers are hiring for right now.</p>
        </section>

        <section class="team">
            <h3>Meet the Founders</h3>
            <div class="team-grid">
                <div class="team-member">
                    <img src="placeholder-instructor1.svg" alt="Dr. Alex Chen">
                    <h4>Dr. Alex Chen</h4>
                    <p>Lead Architect, Backend Specialist</p>
                </div>
                <div class="team-member">
                    <img src="placeholder-instructor2.svg" alt="Sarah Jones">
                    <h4>Sarah Jones</h4>
                    <p>Senior Frontend Engineer, UX Focus</p>
                </div>
            </div>
        </section>

        <section class="values">
            <h3>Our Core Values</h3>
            <ul>
                <li>Practicality Over Theory</li>
                <li>Continuous Improvement</li>
                <li>Supportive Community</li>
            </ul>
        </section>
    </main>
    <footer>
        <p>&copy; 2024 EduCourse. All rights reserved. | <a href="./index.html">Home</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>