-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.html
4 lines (4 loc) · 1.09 KB
/
sample.html
1
2
3
4
<html><h1>Heading 1</h1><hr><p>This is <code>inline code</code>. </p><h5>A smaller heading</h5><p><b>bold</b>, <i>italic</i>, <del>struckthrough</del></p><pre><code>fold :: (a -> b -> b) -> b -> [a] -> b
fold f z [] = z
fold f z (x:xs) = f x (fold f z xs)
</code></pre><ol start="3"><li><p>This is a numbered list.</p></li><li><p>This is the second item.</p></li><li><p>This is the third item.</p></li><ol start="1"><li><p>This is the first sub-item</p></li></ol></ol><ul><li><p>This is an unordered list.</p></li><ul><li><p>This is also an unordered list</p></li><li><p>With another element</p></li><ul><li><p>This too</p></li></ul></ul><li><p>With another list item and <b>bold text</b></p></li></ul><p>A regular paragraph with a <a href="www.google.com">this is a link</a>.</p><img alt="This is an image example" src="quokka.jpeg"><blockquote><p>Quotable quotes</p><p>"Quote me!"</p></blockquote><table><thead><tr><th>Syntax </th><th>Description </th></tr></thead><tbody><tr><td>Header </td><td><b>Title</b> </td></tr><tr><td>Paragraph </td><td><code>Code</code> </td></tr></tbody></table><p>The end.</p></html>