md4tj/test_file.html

42 lines
754 B
HTML

<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Test webpage</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta charset="UTF-8">
</head>
<body>
<h1>Hello <code>world</code>!</h1>
<h2>Hello world!</h2>
<h3>Hello world!</h3>
<h4>Hello <strong><em>world</em></strong>!</h4>
<br/>
<p><a href="https://example.com">Example website</a></p>
<p><img src="usbs.png" alt="Example image"></p>
<br/>
<ul>
<li><p>unordered item 1</p></li>
<li><p>unordered item 2</p></li>
<li><p>unordered item 3</p></li>
</ul>
<br/>
<ol>
<li><p>ordered item 1</p></li>
<li><p>ordered item 2</p></li>
</ol>
<br/>
<pre>
<code>
#include &lt;stdio.h&gt;
int main() {
printf("%s\n", "Hello World!");
return 0;
}
</code>
</pre>
<br/>
</body>
</html>