Dashboard Temp Share Shortlinks Frames API

HTMLify

services.html
Views: 18 | 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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Services - 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">Home</a>
                <a href="about.html" class="nav-link">About</a>
                <a href="services.html" class="nav-link active">Services</a>
                <a href="contact.html" class="nav-link">Contact</a>
            </nav>
        </div>
    </header>

    <main class="page-content container fade-in">
        <section class="services-section">
            <h1 class="section-title">What We Offer</h1>
            <p class="section-subtitle">Precision solutions tailored for digital excellence.</p>

            <div class="service-list">
                <div class="service-item card-anim" data-delay="0.1">
                    <div class="icon">UI</div>
                    <h3>User Interface Design</h3>
                    <p>Crafting pixel-perfect, responsive interfaces that prioritize aesthetics and usability.</p>
                </div>
                <div class="service-item card-anim" data-delay="0.2">
                    <div class="icon">UX</div>
                    <h3>User Experience Strategy</h3>
                    <p>Deep dive research and journey mapping to ensure every interaction feels natural.</p>
                </div>
                <div class="service-item card-anim" data-delay="0.3">
                    <div class="icon">WEB</div>
                    <h3>Bespoke Web Development</h3>
                    <p>High-performance, custom front-end development using modern frameworks.</p>
                </div>
                <div class="service-item card-anim" data-delay="0.4">
                    <div class="icon">BRAND</div>
                    <h3>Brand System Design</h3>
                    <p>Developing comprehensive visual languages that scale across all touchpoints.</p>
                </div>
            </div>
        </section>

        <section class="process-section">
            <h2 class="section-title">Our Flow</h2>
            <div class="process-steps">
                <div class="step card-anim" data-delay="0.1">1. Discovery</div>
                <div class="step card-anim" data-delay="0.2">2. Design & Prototype</div>
                <div class="step card-anim" data-delay="0.3">3. Development & Refinement</div>
                <div class="step card-anim" data-delay="0.4">4. Launch & Support</div>
            </div>
        </section>
    </main>

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