JavaScript Programming JavaScript > Code Examples 'write()' Method 'write()' Method <html> <head> <title>Happy Codings :-) JavaScript Code Examples</title> </head> <body> <script language="JavaScript"> function function1() { var m = "<p>This is a sample text. First paragraph.</p>"; m += "<p>This is the second paragraph.</p>" document.write(m); } </script> <input type="button" value="Add some HTML content to this page" onClick="function1();"> </body> </html>