AI To Human Text Converter Online
function humanizeText() {
let text = document.getElementById(“inputText”).value;
let tone = document.getElementById(“tone”).value;
let level = document.getElementById(“level”).value;
let limit = document.getElementById(“limit”).value;
if (!text) {
alert(“Please enter text first”);
return;
}
// Word Limiter
let words = text.split(” “);
if (limit === “150” && words.length > 150) {
text = words.slice(0,150).join(” “);
}
// Simulated Humanization
let output = text
.replace(/AI/gi, “human”)
.replace(/Therefore/gi, “So”)
.replace(/Moreover/gi, “Also”);
body {
font-family: Arial, sans-serif;
margin: 0;
background: #f9f9f9;
}
.navbar {
display: flex;
justify-content: space-between;
padding: 15px;
background: #0a2540;
}
.navbar a {
color: white;
margin: 0 10px;
text-decoration: none;
}
.tool {
max-width: 800px;
margin: auto;
padding: 20px;
}
textarea {
width: 100%;
min-height: 150px;
margin-bottom: 15px;
}
button {
padding: 12px;
width: 100%;
background: #007bff;
color: white;
border: none;
cursor: pointer;
}
footer {
text-align: center;
padding: 15px;
background: #eee;
}