diff options
-rw-r--r-- | css/xengineering.css | 8 | ||||
-rw-r--r-- | html/template.html | 14 |
2 files changed, 22 insertions, 0 deletions
diff --git a/css/xengineering.css b/css/xengineering.css index f5dcf60..b49be0c 100644 --- a/css/xengineering.css +++ b/css/xengineering.css @@ -32,6 +32,14 @@ a { color: blue; } +ol { + padding-left: 20px; /* FIXME: just a hard-coded value */ +} + +ul { + padding-left: 15px; /* FIXME: just a hard-coded value */ +} + nav { background-color: black; } 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 |