Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 16 | 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>Aura Creative Studio</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">
        <div class="container">
            <div class="logo">Aura.</div>
            <nav class="nav">
                <a href="index.html" class="nav-link active">Home</a>
                <a href="about.html" class="nav-link">About</a>
                <a href="services.html" class="nav-link">Services</a>
                <a href="contact.html" class="nav-link">Contact</a>
            </nav>
        </div>
    </header>

    <main id="hero-section" class="hero-section fade-in">
        <div class="container content-wrapper">
            <div class="hero-text">
                <h1 class="title-anim">Design That Breathes.</h1>
                <p class="subtitle-anim">Crafting digital experiences with precision, elegance, and modern flair. We build the future, pixel by pixel.</p>
                <a href="services.html" class="cta-button cta-anim">Explore Our Work</a>
            </div>
            <div class="hero-visual">
                <div class="cube cube-1"></div>
                <div class="cube cube-2"></div>
                <div class="cube cube-3"></div>
            </div>
        </div>
    </main>

    <section class="features-section container">
        <h2 class="section-title">Our Focus</h2>
        <div class="feature-grid">
            <div class="feature-card card-anim" data-delay="0.1">
                <h3>UX Mastery</h3>
                <p>Intuitive interfaces designed for human interaction, ensuring seamless user journeys.</p>
            </div>
            <div class="feature-card card-anim" data-delay="0.2">
                <h3>Visual Identity</h3>
                <p>Building strong, memorable brand aesthetics that resonate deeply with your audience.</p>
            </div>
            <div class="feature-card card-anim" data-delay="0.3">
                <h3>Modern Stack</h3>
                <p>Leveraging cutting-edge web technologies for performance and scalability.</p>
            </div>
        </div>
    </section>

    <footer class="footer">
        <div class="container">
            <p>&copy; 2024 Aura Creative Studio. All rights reserved.</p>
        </div>
    </footer>

    <script src="script.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>