pre tags are super-useful for display code blocks within in HTML and for debugging output while writing scripts.
Text wrapping within the <pre> tag
Text will not wrap by default, but can be made to by assigning this stye to the pre:
pre {
white-space: pre-wrap;
}
