1<!DOCTYPE html>
 2<html lang="en">
 3<head>
 4    <meta charset="UTF-8">
 5    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 6    <title>Test Page</title>
 7    <style>
 8        body { font-family: sans-serif; }
 9        .container { max-width: 800px; margin: 0 auto; }
10    </style>
11</head>
12<body>
13    <div class="container">
14        <header>
15            <h1>Welcome to QWE Editor Test</h1>
16        </header>
17        <main>
18            <section>
19                <h2>Article Section</h2>
20                <article>
21                    <p>This is a paragraph inside an article. It tests <strong>bold</strong> and <em>italic</em> rendering concepts.</p>
22                    <img src="test.jpg" alt="Test Image">
23                </article>
24            </section>
25            <aside>
26                <ul>
27                    <li>List item 1</li>
28                    <li>List item 2</li>
29                    <li><a href="#">Link item</a></li>
30                </ul>
31            </aside>
32            <form action="/submit">
33                <label for="name">Name:</label>
34                <input type="text" id="name" name="name">
35                <button type="submit">Send</button>
36            </form>
37        </main>
38        <footer>
39            <p>&copy; 2024 QWE Editor</p>
40        </footer>
41    </div>
42</body>
43</html>