.
Freetools12
रविवार, 13 अगस्त 2023
https://vdbaa.com/fullpage.php?section=General&pub=372565&ga=g
.Text Editor
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f4f4f4;
}
.editor {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
width: 80%;
max-width: 800px;
}
textarea {
width: 100%;
height: 300px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 10px;
font-size: 14px;
}
button {
margin-top: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 4px;
padding: 8px 16px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
const textarea = document.getElementById('textarea');
const downloadBtn = document.getElementById('downloadBtn');
downloadBtn.addEventListener('click', () => {
const textToSave = textarea.value;
const blob = new Blob([textToSave], { type: 'text/plain' });
const link = document.createElement('a');
link.href = window.URL.createObjectURL(blob);
link.download = 'text-file.txt';
link.click();
});
.
.