Is it valid to write '<' and '>' in HTML5 with spaces surrounding them or must they always be written as HTML entities?
Is the following valid HTML5? <p>1 < 2</p> <p>2 > 1</p> Or must this always be written using HTML5 entities like this? <p>1 < 2</p> <p>2 > 1</p> Can someone help me answer this question with references to the HTML5…