summaryrefslogtreecommitdiff
path: root/samples/test.html
diff options
context:
space:
mode:
Diffstat (limited to 'samples/test.html')
-rw-r--r--samples/test.html43
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>&copy; 2024 QWE Editor</p>
+ </footer>
+ </div>
+</body>
+</html>