<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"\>
<body\>
<script type="text/javascript"\>
for (i = 1; i <= 100; i++)
{
  document.write("The number is " + i)
  if ( i%3 == 0 ) { document.write("Fizz") }
  if ( i%5 == 0 ) { document.write("Buzz") }
  document.write("\
") } </script\> <p>Javascript FizzBuzz </p> </body> </html>