diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 20:22:09 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 20:22:09 +0100 |
| commit | 5a8dbc6347b3541e84fe669b22c17ad3b715e258 (patch) | |
| tree | b148c450939688caaaeb4adac6f2faa1eaffe649 /samples/test.html | |
| download | qwe-editor-5a8dbc6347b3541e84fe669b22c17ad3b715e258.tar.gz | |
Engage!
Diffstat (limited to 'samples/test.html')
| -rw-r--r-- | samples/test.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/samples/test.html b/samples/test.html new file mode 100644 index 0000000..5777899 --- /dev/null +++ b/samples/test.html @@ -0,0 +1,43 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Test Page</title> + <style> + body { font-family: sans-serif; } + .container { max-width: 800px; margin: 0 auto; } + </style> +</head> +<body> + <div class="container"> + <header> + <h1>Welcome to QWE Editor Test</h1> + </header> + <main> + <section> + <h2>Article Section</h2> + <article> + <p>This is a paragraph inside an article. It tests <strong>bold</strong> and <em>italic</em> rendering concepts.</p> + <img src="test.jpg" alt="Test Image"> + </article> + </section> + <aside> + <ul> + <li>List item 1</li> + <li>List item 2</li> + <li><a href="#">Link item</a></li> + </ul> + </aside> + <form action="/submit"> + <label for="name">Name:</label> + <input type="text" id="name" name="name"> + <button type="submit">Send</button> + </form> + </main> + <footer> + <p>© 2024 QWE Editor</p> + </footer> + </div> +</body> +</html> |
