md4tj/test_file.html

32 lines
579 B
HTML
Raw Normal View History

<body>
2022-12-28 16:44:57 -05:00
<h1>Hello <code>world</code>!</h1>
<h2>Hello world!</h2>
<h3>Hello world!</h3>
<h4>Hello <strong><em>world</em></strong>!</h4>
<br/>
2022-12-29 11:51:11 -05:00
<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>