Blogger Not Uygulaması Nasıl Eklenir?
<div class="container">
<h1>Notes Uygulamasına Hoş Geldiniz</h1>
<br />
<div class="note-input">
<label for="textarea">Bir Not Ekle</label><br>
<textarea name="textarea" id="textarea" cols="80" rows="5" placeholder="Notunuzu buraya yazın..."></textarea><br>
<button id="myBtn">Not Ekle</button>
</div>
<hr class="hrStyle">
<h1>Notlarınız</h1>
<hr class="hrStyle">
<div id="notes" class="notesBox">Henüz not eklenmedi.</div>
</div>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
padding: 20px;
}
.navbar {
display: flex;
justify-content: space-…