Welcome to my webpage!
More cool toolz on the way.
Look around the site if you like what you see consider supporting us by sharing with friends.
Quick funny song
FROGGY WENT A COURTEN HEED IT RIGHT CRAMBONE
FUN WITH HTML
IN THIS ONE AS SOON AS YOU MAKE ALL YOUR CHOICES AND CLICK GENERATE IT WILL SIMPLY SHOW YOU THE RESULTS !!!
ENJOY.
NOTICE I AM STILL TRYING TO RESOLVE THE SPEECH FUNCTION. CHECK BACK SOON TO SEE IF I FIGURE IT OUT.
ENJOY.
NOTICE I AM STILL TRYING TO RESOLVE THE SPEECH FUNCTION. CHECK BACK SOON TO SEE IF I FIGURE IT OUT.
HTML Page Generator
TEXT TO SPEAK CODE- GRAB IT AND RUN OFF LIKE YOU JUST STOLE IT !!!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Read All Text on Page Load</title>
<script>
function readAllText() {
// Get the text content of the body
const allText = document.body.innerText.trim();
// Use the Web Speech API to read the text
const utterance = new SpeechSynthesisUtterance(allText);
speechSynthesis.speak(utterance);
}
// Call the 'readAllText' function when the webpage loads
window.addEventListener('load', readAllText);
</script>
</head>
<body>
<h1>Welcome to YOUR webpage!</h1>
<p>YOUR MESSAGE HERE !!!.</p>
<div><span>YOUR MESSAGE HERE !!!</span></div>
<p>Quick funny song</p>
<p>YOUR MESSAGE HERE !!! </p>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Read All Text on Page Load</title>
<script>
function readAllText() {
// Get the text content of the body
const allText = document.body.innerText.trim();
// Use the Web Speech API to read the text
const utterance = new SpeechSynthesisUtterance(allText);
speechSynthesis.speak(utterance);
}
// Call the 'readAllText' function when the webpage loads
window.addEventListener('load', readAllText);
</script>
</head>
<body>
<h1>Welcome to YOUR webpage!</h1>
<p>YOUR MESSAGE HERE !!!.</p>
<div><span>YOUR MESSAGE HERE !!!</span></div>
<p>Quick funny song</p>
<p>YOUR MESSAGE HERE !!! </p>
</body>
</html>