-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex-lab.html
More file actions
49 lines (45 loc) · 1.93 KB
/
flex-lab.html
File metadata and controls
49 lines (45 loc) · 1.93 KB
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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>Flexbox Lab Uygulaması</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="lab-body">
<div class="lab-wrapper">
<header class="lab-nav">
<div class="logo">FLEXLAB</div>
<nav class="lab-links">
<a href="index.html">Ana Sayfa</a>
<a href="about.html">Hakkında</a>
<a href="interests.html">Dersler</a>
<a href="contact.html">İletişim</a>
</nav>
</header>
<section class="lab-hero">
<div class="hero-content">
<h1>Modern Flexbox</h1>
<p>Layout tasarlamanın en güçlü yolu.</p>
<button style="width: 120px; padding: 10px; background: #4f46e5; color: white; border: none; border-radius: 6px; cursor: pointer;">Keşfet</button>
</div>
<div class="hero-image-box">🚀</div>
</section>
<section class="lab-cards">
<div class="card"><h4>Kart 1</h4><p>İçerik alanı</p><button>Detay</button></div>
<div class="card"><h4>Kart 2</h4><p>İçerik alanı</p><button>Detay</button></div>
<div class="card"><h4>Kart 3</h4><p>İçerik alanı</p><button>Detay</button></div>
<div class="card"><h4>Kart 4</h4><p>İçerik alanı</p><button>Detay</button></div>
<div class="card"><h4>Kart 5</h4><p>İçerik alanı</p><button>Detay</button></div>
<div class="card"><h4>Kart 6</h4><p>İçerik alanı</p><button>Detay</button></div>
</section>
<section class="lab-grow-area">
<div class="box box-1">Grow: 1</div>
<div class="box box-2">Grow: 2</div>
<div class="box box-3">Grow: 1</div>
</section>
<footer class="lab-footer">
<p>© 2026 - Modern Flexbox Deneyimi</p>
</footer>
</div>
</body>
</html>