pyWebLayout/test_page.html
Duncan Tourolle 899182152a
Some checks failed
Python CI / test (push) Failing after 4m51s
add some additional tests
2025-06-07 20:16:38 +02:00

47 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test Page for pyWebLayout Browser</title>
</head>
<body>
<h1>pyWebLayout Browser Test Page</h1>
<h3>Images</h3>
<p>Here's a sample image:</p>
<img src="tests/data/sample_image.jpg" alt="Sample Image" width="200" height="150">
<h2>Text Formatting</h2>
<p>This is a paragraph with <b>bold text</b>, <i>italic text</i>, and <u>underlined text</u>.</p>
<h3>Links</h3>
<p>Here are some test links:</p>
<ul>
<li><a href="https://www.google.com" title="Google">External link to Google</a></li>
<li><a href="#section1" title="Section 1">Internal link to Section 1</a></li>
</ul>
<h3>Headers</h3>
<h1>H1 Header</h1>
<h2>H2 Header</h2>
<h3>H3 Header</h3>
<h4>H4 Header</h4>
<h5>H5 Header</h5>
<h6>H6 Header</h6>
<h3>Line Breaks and Paragraphs</h3>
<p>This is the first paragraph.</p>
<br>
<p>This is the second paragraph after a line break.</p>
<h3 id="section1">Section 1</h3>
<p>This is the content of section 1. You can link to this section using the internal link above.</p>
<h3>Images</h3>
<p>Here's a sample image:</p>
<img src="tests/data/sample_image.jpg" alt="Sample Image" width="200" height="150">
<h3>Mixed Content</h3>
<p>This paragraph contains <b>bold</b> and <i>italic</i> text, as well as an <a href="https://www.example.com">external link</a>.</p>
<p><strong>Strong text</strong> and <em>emphasized text</em> should also work.</p>
</body>
</html>