PercentTutorial
7 subscribers
7 files
7 links
Download Telegram
Percent-Tutorial-Position-CSS.zip
57.3 KB
Learn CSS Position in 5 Min - Template File
Percent-Tutorial-Animation-CSS.zip
1.5 MB
Create Fancy Scrolling Animations Used on Apple Forgot Password - Template File
Percent-Tutorial-Popup-HTML-CSS.zip
1.5 MB
Create a Popup With Just 2 LINES Of Code (No Libraries Needed) - Template File
Percent-Tutorial-Text2Speak.zip
762 B
Text To Speech - Template File
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>PercentTutorial</title>

</head>
<body>
<style>
h1 {
font-family: tahoma;
color: red;
}
</style>

<main>
<h1>Text To Speech</h1>
<input type="text" id="input">
<button onclick="speak()">Speak</button>
</main>


<script>
function speak() {
const text = document.getElementById("input").value;
const utterance = new SpeechSynthesisUtterance(text);
const voices = speechSynthesis.getVoices();
utterance.voice = voices[0];
speechSynthesis.speak(utterance);
}
</script>


</body>
</html>
Percent-Tutorial-Download-Button-Animation.zip
5.1 KB
Download Button Animation - Template File