diff options
Diffstat (limited to 'html/template.html')
-rw-r--r-- | html/template.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/html/template.html b/html/template.html index 675a59b..88c99cd 100644 --- a/html/template.html +++ b/html/template.html @@ -32,6 +32,20 @@ <p>This is a link to <a href="https://example.com">example.com</a>.</p> + <p>This is an ordered list:</p> + <ol> + <li>One</li> + <li>Two</li> + <li>Three</li> + </ol> + + <p>This is an unordered list:</p> + <ul> + <li>One</li> + <li>Two</li> + <li>Three</li> + </ul> + <p>Have a look at this beautiful code:</p> <pre><code>#!/usr/bin/python3 |