blob: 5777899e850496fad284b06c58c41328a1519aa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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>
|