Tutorial by Examples

If a sentence contains computer code (for example, the name of an HTML element), use the code element to mark it up: <p>The <code>a</code> element creates a hyperlink.</p>
If the formatting (white space, new lines, indentation) of the code matters, use the pre element in combination with the code element: <pre> <code> x = 42 if x == 42: print "x is … … 42" </code> </pre> You still have to esc...

Page 1 of 1