-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (48 loc) · 1.9 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Not Defteri</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- !--------------------------------Header-------------------------------- -->
<div class="header">
<h1 id="head">Not Defteri</h1>
</div>
<!-- !--------------------------------New Note-------------------------------- -->
<div id="olusturulanyeninot" style="float: right;">
<h3>Yeni Not <hr></h3>
<div class="yeniBaslik " style="float: left;">
<input type="text" id="yeniBaslik" value="" placeholder="Başlık yazın.." style="width: 200px; height: 25px; border-radius: 5px;" required>
</div>
<div style="float: right;">
<input type="date" id="yenitarih" name="tarih" value="" style="height: 25px; border-radius: 5px; width: 100px;" required>
</div>
<div>
<textarea id="yeninot" class="yeninot" name="yeninot" value="" cols="154" rows="17" placeholder="Yeni bir not yazın.." style="border-radius: 10px;" required></textarea>
</div>
<div class="kaydet">
<button id="btn" onclick="yenikayit()">Kaydet</button>
</div>
</div>
<!-- !--------------------------------Saved Note------------------------------- -->
<div id="notlarim" style="float: left;">
<h3>Notlarım <hr></h3>
<!-- Arama -->
<form>
<input type="text" placeholder="Notlarımda Ara" class="ara">
<button type="submit" class="btnara">Ara</button>
</form>
<!-- Notlar -->
<div class="kayitlinotlar">
<ul id="kayitlinotlar-list">
<!-- Buraya kaydedilmiş notlar otomatik olarak eklenecek -->
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>