Javascript – document.write with HTML tags throws “ILLEGAL” status [duplicate]

JS Code

    document.write('
          <b>Version:</b> 2.11<br>
          <b>Author:</b> Alex Toucan<br><br>
          <p>® <script src="/static/year.js"></script> AT Products LLC</p>
');

Console

Uncaught SyntaxError: Unexpected token ILLEGAL 

I’m quite new to the web side of JavaScript, and I have been attempting to get this to work, which was unsuccessful. What can I do to improve my code?