md4tj/test_file.html

84 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="test_css.css">
<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>
<h1>This was included from a separate file!</h1>
<p><a href="https://example.com">Example website</a></p>
<p><img src="usbs.png" alt="Example image"></p>
<p><video src="test_video.webm" type="video/webm" controls="true">Example video</video></p>
<ul>
<li><p>unordered <s>item 1</s></p></li>
<li><p>unordered <mark>item 2</mark></p></li>
<li><p>unordered item 3</p></li>
</ul>
<ol>
<li><p>ordered item 1</p></li>
</ul>
<li><p>ordered item 2</p></li>
</ol>
<ul>
<li><p>unordered item after ordered 1</p></li>
<li><p>unordered item after ordered 2</p></li>
</ul>
<pre>
<code>
#include &lt;stdio.h&gt;
int main() {
printf("%s\n", "Hello World!");
return 0;
}
</code>
</pre>
<br/>
<p><a href="https://crawl.develz.org">Dungeon Crawl Stone Soup</a> - My favorite FOSS roguelike (Yes, I know the greatest roguelike of all time is NetHack, I don't care).</p>
<img class="teximg" src="./teximg/05e525335903ae89ce2a72ebe2582879.png" alt="e^{i \pi} + 1 = 0">
<br/>
<div class="monospace-text">
<p>This is a div that has monospace text.</p>
</div>
<p id="lastupdated">Last updated: Wed Jan 4 15:08:50 2023</p>
</body>
</html>