Help qith atom and html

so im doing the html part but when i open the file it just comes up with the whole script rather than the website. how can i open it in website format?

  • Paste the code on here so we can look for the problem.
  • Make sure that the file has the .html extension
  • Try opening the html file with a different browser (such as chrome, or firefox)
  • Make sure your html document has the following structure:
<!DOCTYPE html>
<html>
    <head>
        <title>Page Title</title>
    </head>
    <body>
        <h1>Homepage Headline</h1>
        <p>This is a paragraph.</p>
    </body>
</html>