Home >Web Front-end >HTML Tutorial >HTML Tutorial – Script
Add scripts to HTML to make it more dynamic and interactive.
Inserting scripts into HTML pages
Scripts in HTML are defined using the <script> tag. Note that you can use the type attribute to specify the scripting language. </p>
<p><html><br><head><br></head><br><body></p>
<p><script type="text/javascript"> <br>document.write("Hello World!")<br></script>