diff options
author | xengineering <me@xengineering.eu> | 2021-09-04 18:14:59 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2021-09-04 18:14:59 +0200 |
commit | f58bf0443d71f7476c7fdb7a6e1dc9c3d61da412 (patch) | |
tree | 0da5d2f32795315ab1aaa326e1cb3bf0de5ef16c /html | |
parent | 19db808d938d2755764c728dcea1573ef34708fc (diff) | |
download | libweb-f58bf0443d71f7476c7fdb7a6e1dc9c3d61da412.tar libweb-f58bf0443d71f7476c7fdb7a6e1dc9c3d61da412.tar.zst libweb-f58bf0443d71f7476c7fdb7a6e1dc9c3d61da412.zip |
Add Container Element
Diffstat (limited to 'html')
-rw-r--r-- | html/template.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/html/template.html b/html/template.html index 9c1b5a8..eaaf9e7 100644 --- a/html/template.html +++ b/html/template.html @@ -25,12 +25,24 @@ <main> <h1>libweb</h1> + <p>A repository with reusable components for web development.</p> + <p>This is a link to <a href="https://example.com">example.com</a>.</p> + + <p>Have a look at this beautiful code:</p> <pre><code>#!/usr/bin/python3 print("This is just some example code!") </code></pre> + + <p>Sometimes it is quite nice to put things into containers:</p> + <a href="https://xengineering.eu"> + <div href="https://xengineering.eu"> + <h3>This is a Container</h3> + <p>Containers are very good.</p> + </div> + </a> </main> <script> |