-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (36 loc) · 1.25 KB
/
index.html
File metadata and controls
38 lines (36 loc) · 1.25 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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NoteAdd</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="shell">
<section class="hero">
<div class="hero-copy">
<p class="eyebrow">NoteAdd</p>
<h1 class="heading">Notlarını daha ferah bir panoda yönet.</h1>
<p class="hero-text">
Hızlıca ekle, renkleri kişiselleştir ve aklındaki her şeyi tek ekranda tut.
</p>
</div>
<button class="add-note-hero" id="hero_add_btn" type="button">+ Yeni Not</button>
</section>
<section class="board-panel">
<div class="board-top">
<div>
<h2 class="board-title">Not Panon</h2>
<p class="board-subtitle" id="note_status">Henüz not yok. İlk notunu ekle.</p>
</div>
<div class="count-badge"><span id="note_count">0</span> not</div>
</div>
<div class="app" id="note_parent_div">
<button class="note_btn" id="btn" type="button">+ İlk notunu oluştur</button>
</div>
</section>
</main>
<script src="style.js"></script>
</body>
</html>