its step 12 and 13. I have answers corrent. I just want to know why it shows up like that. What is the reason why certian lines do not have a >< /div> in general
<body>
<div id="back-wall"></div> /* opened & closed on same line */
<div class="characters"> /* opened for class="characters" */
</div> /* closed for class="characters" */
</body>
Each opening div tag has corresponding closing div tag.
Step 13 starts off with:
<body>
<div id="back-wall"></div> /* opened & closed on same line */
<div class="characters"> /* opened for class="characters" */
<div id="offwhite-character"> /* opened for id="offwhite-character */
</div> /* closed for id="offwhite-character" */
</div> /* closed for class="characters" */
</body>
Same thing here. Each opening div tag has corresponding closing div tag.
The only things that bothers me is the starting with the div with class="characters", it should not be indented over 4 spaces like it is currently shown.