Point Blank Period - Your Ultimate Notes App
About this app
Keep your thoughts organized with Point Blank Period, a fun, colorful notes app that helps you jot down ideas, tasks, and important reminders effortlessly.
Point Blank Period - Your Ultimate Notes App Point Blank Period
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Point Blank Period - Your Ultimate Notes App</title>
<meta name="description" content="Keep your thoughts organized with Point Blank Period, a fun, colorful notes app that helps you jot down ideas, tasks, and important reminders effortlessly." />
<meta name="keywords" content="notes, to-do list, organization, colorful, tasks" />
<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
const noteInput = document.getElementById('note-input');
const notesList = document.getElementById('notes-list');
document.getElementById('add-note-btn').addEventListener('click', function() {
const noteText = noteInput.value.trim();
if (noteText) {
const noteItem = document.createElement('div');
noteItem.classList.add('note-item', 'd-flex', 'align-items-center', 'justify-content-between', 'p-2', 'mb-2', 'border', 'rounded', 'bg-light', 'position-relative');
noteItem.innerHTML =
`<span>${noteText}</span>
<button class='btn btn-danger btn-sm delete-note' aria-label='Delete Note'><i class='fas fa-trash'></i></button>`;
notesList.appendChild(noteItem);
noteInput.value = '';
setTimeout(() => {
noteItem.classList.add('fade-in');
}, 50);
noteItem.querySelector('.delete-note').addEventListener('click', function() {
noteItem.classList.add('fade-out');
setTimeout(() => {
notesList.removeChild(noteItem);
}, 300);
});
}
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #74ebd5, #9face6);
color: #333;
font-family: 'Arial', sans-serif;
overflow-x: hidden;
}
#main-container {
margin-top: 50px;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
background-color: white;
}
#note-input {
border: 2px solid #74ebd5;
border-radius: 5px;
}
.note-item {
transition: 0.3s;
opacity: 1;
}
.fade-in {
opacity: 1;
}
.fade-out {
opacity: 0;
}
.delete-note {
position: absolute;
right: 10px;
top: 5px;
}
h2 {
color: #2b2d42;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h2 class="text-center">Point Blank Period</h2>
<div class="input-group mb-3">
<input type="text" id="note-input" class="form-control" placeholder="Enter your note here..." aria-label="Note input">
<button class="btn btn-primary" id="add-note-btn" type="button"><i class="fas fa-plus"></i></button>
</div>
<div id="notes-list" class="mt-3"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!