<!DOCTYPE html> <html> <body> <h2>The script Tag</h2> <p id="demo">Original text</p> <script> document.getElementById('demo').innerHTML = 'Hello from a script tag!'; </script> </body> </html>