Dashboard Temp Share Shortlinks Frames API

HTMLify

about.html
Views: 38 | 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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Green Oasis - About Us</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
    <header class="header">
        <nav class="navbar">
            <div class="logo">GreenOasis</div>
            <ul class="nav-links">
                <li><a href="index.html" class="nav-link">Home</a></li>
                <li><a href="about.html" class="nav-link active">About</a></li>
                <li><a href="services.html" class="nav-link">Services</a></li>
                <li><a href="contact.html" class="nav-link">Contact</a></li>
            </ul>
        </nav>
    </header>

    <main class="main-content">
        <section class="page-header fade-in">
            <h1>Our Philosophy</h1>
            <p>Where clean design meets ecological consciousness.</p>
        </section>

        <section class="content-section">
            <div class="content-block fade-in-delay-1">
                <h2>The Green Standard</h2>
                <p>At GreenOasis, we believe that exceptional digital experiences shouldn't cost the earth. We merge modern design principles—sharp aesthetics, intuitive UX, and robust performance—with a commitment to sustainability. Every project we undertake is optimized for speed and efficiency, reducing digital footprints while maximizing visual impact.</p>
                <p>Our team is composed of designers and developers who share a passion for clarity, elegance, and responsible technology.</p>
            </div>
            <div class="content-block image-placeholder fade-in-delay-2">
                <div class="placeholder-box">[Abstract Green Pattern Image]</div>
            </div>
        </section>

        <section class="plant-gallery-section bottom-plants fade-in-delay-3">
            <h2>Supporting Imagery</h2>
            <div class="plant-grid">
                <div class="plant-card">
                    <img src="plant1.jpg" alt="Lush Fern Plant">
                    <p>Fern Varieties</p>
                </div>
                <div class="plant-card">
                    <img src="plant2.jpg" alt="Monstera Deliciosa">
                    <p>Monstera</p>
                </div>
                <div class="plant-card">
                    <img src="plant3.jpg" alt="Succulent Arrangement">
                    <p>Succulents</p>
                </div>
                <div class="plant-card">
                    <img src="plant4.jpg" alt="Fiddle Leaf Fig">
                    <p>Ficus Lyrata</p>
                </div>
            </div>
        </section>

    </main>

    <footer class="footer">
        <p>&copy; 2024 GreenOasis. All rights reserved.</p>
    </footer>

    <script src="script.js"></script>
</body>
</html>