diff options
author | xengineering <me@xengineering.eu> | 2021-11-25 20:06:54 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2021-11-25 20:06:54 +0100 |
commit | da65aec6910079684ceea6be6d6c39d12e4db544 (patch) | |
tree | 7ab9ff4ff4719f6cdb86f45b3fa82f576cefc8b8 | |
parent | eeb551f70d174ca406ba25d329e03fe682efdcde (diff) | |
download | libweb-da65aec6910079684ceea6be6d6c39d12e4db544.tar libweb-da65aec6910079684ceea6be6d6c39d12e4db544.tar.zst libweb-da65aec6910079684ceea6be6d6c39d12e4db544.zip |
Add simple Test Page
-rw-r--r-- | html/test_simple.html | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/html/test_simple.html b/html/test_simple.html new file mode 100644 index 0000000..4de549c --- /dev/null +++ b/html/test_simple.html @@ -0,0 +1,112 @@ +<!DOCTYPE html> + +<!-- +vim: shiftwidth=4 tabstop=4 noexpandtab + +libweb - reusable code for websites + + Copyright (C) 2021 xengineering + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. + +contact via mail: me@xengineering.eu +--> + +<html> + + <head> + + <title>libweb</title> + + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="../css/xengineering.css" type="text/css"> + + </head> + + <body> + + <!-- h1 h2 h3 h4 h5 h6 --> + <h1>A simple Test Page</h1> + <h2>A simple Test Page</h2> + <h3>A simple Test Page</h3> + <h4>A simple Test Page</h4> + <h5>A simple Test Page</h5> + <h6>A simple Test Page</h6> + + <!-- 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> + + <!-- a --> + <a href="https://example.com">Example Link</a> + + <!-- img --> + <img src="../img/demo.png" alt="An example image"> + <img src="null.jpg" alt="Not existing image"> + + <!-- ol ul li --> + <ol> + <li>First item</li> + <li>Second item</li> + <li>Third item</li> + <li>Long item: 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.</li> + </ol> + <ul> + <li>An item</li> + <li>Another item</li> + <li>Just another item</li> + <li>Long item: 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.</li> + </ul> + + <!-- pre --> + <pre>#!/bin/sh + +# This is a cool shell script. +echo "I am $(whoami)" +</pre> + + <!-- .card --> + <div class="card"></div> + + <script src="../js/xengineering.js"></script> + + </body> + +</html> |