Monday, September 11, 2023

WORD GENERATOR



Random Word Generator

Random Word Generator

Click the button below to generate a random word:

IMGE RESIZER



Image Resizer

Image Resizer

RESUM FROM



Online Resume Builder

Your Resume

Personal Information

Name:

Email:

Address:

Education

Experience

Hobbies

Languages Spoken

Disclaimer

Download PDF

TEXT EDITOR



Text Editor
body { font-family: Arial, sans-serif; background-color: #f0f0f0; margin: 0; padding: 0; } .editor-container { max-width: 800px; margin: 0 auto; padding: 20px; background-color: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); border-radius: 5px; overflow: hidden; } .editor-toolbar { text-align: right; } textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; resize: none; } #save-btn { padding: 10px 20px; background-color: #0074d9; color: #fff; border: none; border-radius: 5px; cursor: pointer; } #save-btn:hover { background-color: #0056b3; } document.addEventListener("DOMContentLoaded", function () { const editor = document.getElementById("editor"); const saveBtn = document.getElementById("save-btn"); saveBtn.addEventListener("click", function () { const textToSave = editor.value; if (textToSave.trim() === "") { alert("Cannot save an empty file."); return; } const blob = new Blob([textToSave], { type: "text/plain" }); const url = URL.createObjectURL(blob); const a = document.createElement("a"); a.href = url; a.download = "my_text_file.txt"; a.style.display = "none"; document.body.appendChild(a); a.click(); URL.revokeObjectURL(url); }); });

Video Recorder



Screen Recorder Tool

Screen Recorder Tool

body { font-family: Arial, sans-serif; background-color: #f2f2f2; margin: 0; padding: 0; } .container { max-width: 800px; margin: 0 auto; padding: 20px; background-color: #fff; border-radius: 10px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); text-align: center; } h1 { color: #333; } .controls { margin-top: 20px; } button { padding: 10px 20px; font-size: 16px; background-color: #007BFF; color: #fff; border: none; border-radius: 5px; cursor: pointer; margin-right: 10px; } button:disabled { background-color: #ccc; cursor: not-allowed; } video { width: 100%; max-width: 800px; margin-top: 20px; } const startRecordingButton = document.getElementById('startRecording'); const stopRecordingButton = document.getElementById('stopRecording'); const recordingVideo = document.getElementById('recording'); let recorder; startRecordingButton.addEventListener('click', () => { startRecordingButton.disabled = true; stopRecordingButton.disabled = false; const stream = navigator.mediaDevices.getDisplayMedia({ video: true }); recorder = RecordRTC(stream, { type: 'video', mimeType: 'video/webm', }); recorder.startRecording(); recorder.stream = stream; }); stopRecordingButton.addEventListener('click', () => { startRecordingButton.disabled = false; stopRecordingButton.disabled = true; recorder.stopRecording(() => { const blob = recorder.getBlob(); recordingVideo.src = URL.createObjectURL(blob); recorder.stream.getTracks().forEach((track) => track.stop()); }); });

WORD GENERATOR

Random Word Generator Random Word Generator Click the button below to generate a random w...