diff options
author | xengineering <me@xengineering.eu> | 2021-09-06 08:34:51 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2021-09-06 08:34:51 +0200 |
commit | 6c2fe050adc74103413d0695571a2dde3de61130 (patch) | |
tree | b90710a461bf7bad2b9e3cea43982866e5fec69c | |
parent | f68174101c41e5c477ae0f7e70b740688d70394e (diff) | |
download | libweb-6c2fe050adc74103413d0695571a2dde3de61130.tar libweb-6c2fe050adc74103413d0695571a2dde3de61130.tar.zst libweb-6c2fe050adc74103413d0695571a2dde3de61130.zip |
Select text-align to left for Paragraphs
-rw-r--r-- | css/xengineering.css | 4 | ||||
-rw-r--r-- | html/template.html | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/css/xengineering.css b/css/xengineering.css index d5a1a61..f5dcf60 100644 --- a/css/xengineering.css +++ b/css/xengineering.css @@ -23,6 +23,10 @@ h1 { text-align: center; } +p { + text-align: left; +} + a { text-decoration: none; color: blue; diff --git a/html/template.html b/html/template.html index 477539e..675a59b 100644 --- a/html/template.html +++ b/html/template.html @@ -26,7 +26,9 @@ <main> <h1>libweb</h1> - <p>A repository with reusable components for web development.</p> + <p>A repository with reusable components for web development. Here is a long paragraph:</p> + + <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p> <p>This is a link to <a href="https://example.com">example.com</a>.</p> |