kittykatattack / learningPixi

A step-by-step introduction to making games and interactive media with the Pixi.js rendering engine.
4.4k stars 851 forks source link

<script> tag between </head> and <body> #155

Open ctyler-liquidfish opened 3 years ago

ctyler-liquidfish commented 3 years ago

Under Setting Up > Installing Pixi is a block of code containing this:

</head>
  <script src="pixi/pixi.min.js"></script>
<body>

But the script tag should be inside either the head or the body, so

- </head>
  <script src="pixi/pixi.min.js"></script>
+ </head>
<body>