Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 21 | 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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Green Oasis</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 active">Home</a></li>
                <li><a href="about.html" class="nav-link">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="hero" id="hero">
            <div class="hero-text fade-in">
                <h1>Cultivating Digital Growth</h1>
                <p>Modern, sustainable, and beautifully designed web solutions inspired by nature's finest greens.</p>
                <a href="services.html" class="cta-button">Explore Our Offerings</a>
            </div>
        </section>

        <section class="features-section">
            <h2>Our Core Principles</h2>
            <div class="feature-grid">
                <div class="feature-card fade-in-delay-1">
                    <div class="icon">🌿</div>
                    <h3>Sustainable Design</h3>
                    <p>Clean code and energy-efficient interfaces.</p>
                </div>
                <div class="feature-card fade-in-delay-2">
                    <div class="icon">✨</div>
                    <h3>Polished Aesthetics</h3>
                    <p>Figma-level precision in every pixel.</p>
                </div>
                <div class="feature-card fade-in-delay-3">
                    <div class="icon">🚀</div>
                    <h3>Modern Tech Stack</h3>
                    <p>Built with the latest responsive technologies.</p>
                </div>
            </div>
        </section>

        <section class="cta-bottom">
            <p>Ready to build something beautiful?</p>
            <a href="contact.html" class="cta-button secondary-button">Get Started Today</a>
        </section>

        <section class="plant-list-section fade-in-delay-3">
            <h2>Featured Plant Index</h2>
            <div class="plant-grid">
                <div class="plant-card plant-list-item">
                    <p>1. Ficus Lyrata</p>
                </div>
                <div class="plant-card plant-list-item">
                    <p>2. Monstera Deliciosa</p>
                </div>
                <div class="plant-card plant-list-item">
                    <p>3. Sansevieria (Snake Plant)</p>
                </div>
                <div class="plant-card plant-list-item">
                    <p>4. Zamioculcas Zamiifolia (ZZ Plant)</p>
                </div>
                <div class="plant-card plant-list-item">
                    <p>5. Pothos (Epipremnum aureum)</p>
                </div>
                <div class="plant-card plant-list-item">
                    <p>6. Calathea Orbifolia</p>
                </div>
            </div>
        </section>
    </main>

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

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