Dashboard Temp Share Shortlinks Frames API

HTMLify

about.html
Views: 41 | 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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About UI Showcase</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap" rel="stylesheet">
</head>
<body>
    <header>
        <nav>
            <div class="logo">UI Lab</div>
            <div class="nav-links">
                <a href="buttons.html">Buttons</a>
                <a href="inputs.html">Inputs</a>
                <a href="sliders.html">Sliders</a>
                <a href="colors.html">Colors</a>
                <a href="typography.html">Typography</a>
                <a href="about.html" class="active">About</a>
            </div>
        </nav>
    </header>

    <main class="container">
        <section class="hero about-hero fade-in">
            <h1>Design Philosophy</h1>
            <p>This showcase demonstrates modern, accessible, and responsive UI patterns. Every component is crafted with performance and visual appeal in mind, adhering to a dark, modern aesthetic.</p>
            
            <div class="principles">
                <div class="principle-card fade-in-delay-1">
                    <h3>1. Polish</h3>
                    <p>Subtle transitions and hover effects provide satisfying feedback.</p>
                </div>
                <div class="principle-card fade-in-delay-2">
                    <h3>2. Responsiveness</h3>
                    <p>Layouts built exclusively with Flexbox and Grid for perfect scaling.</p>
                </div>
                <div class="principle-card fade-in-delay-3">
                    <h3>3. Clarity</h3>
                    <p>High contrast ratios and clear visual hierarchy ensure readability.</p>
                </div>
                <div class="principle-card fade-in-delay-1">
                    <h3>4. Hierarchy</h3>
                    <p>Use of color and weight guides the user's eye naturally through content.</p>
                </div>
                <div class="principle-card fade-in-delay-2">
                    <h3>5. Consistency</h3>
                    <p>Uniform border radii, spacing, and typography across all components.</p>
                </div>
                <div class="principle-card fade-in-delay-3">
                    <h3>6. Performance</h3>
                    <p>Animations are hardware-accelerated using CSS transitions for a smooth feel.</p>
                </div>
            </div>
        </section>
    </main>

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