Implement support for the less-than (<) and greater-than (>) entities.
These should be printed as < and >, respectively. For example, if the HTML response was <div>abc<div>,
the show method of your browser should print <div>abc</div> (and not just abc).
Entities allow web pages to include these special characters without the browser interpreting them as tags.