Embedded JavaScript Example - HTML CSS HTML

HTML CSS examples for HTML:Script

Description

Embedded JavaScript Example

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Embedded JavaScript Example</title> 
 </head> <!--  w w w.ja  va 2 s  . c  o  m-->
 <body> 
  <script type="text/javascript">
        document.write("Hello World!");
    </script>   
 </body>
</html>

Related Tutorials