md4tj/test_file.html

141 lines
3.1 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>
<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: Sun 31 Mar 2024 01:59 UTC</p>
<br>
<p><a href="https://www.youtube.com/@ther-boxpodcast8099/">The R-Box Podcast</a> - A bunch of my childhood friends decided to band up and create a podcast while they were living together. This is the result, basically a distillation of our inside jokes and humor in three glorous episodes. I don't talk to these guys much anymore, but as far as I can tell it's never coming back. Probably only funny to people who know them personally (like me), but who knows? I recorded an episode with them as a guest a while back when I was back in town, but I guess I was such a terrible guest they didn't bother uploading it.</p>
<br>
<p><a href="https://en.wikipedia.org/wiki/Sam_%26_Max_Hit_the_Road">Sam & Max Hit The Road</a></p>
<p><a href="https://en.wikipedia.org/wiki/The_Void_(video_game)">The Void</a></p>
<p><a href="https://en.wikipedia.org/wiki/The_Operative:_No_One_Lives_Forever">The Operative: No One Lives Forever</a></p>
<p><a href="https://en.wikipedia.org/wiki/Talk:Joy,_Departed">Joy, Departed</a></p>
<p><a href="https://support.logi.com/hc/en-us/articles/360023467053-G13-Technical-Specifications">Logitech G13</a></p>
<br>
<table><tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
<tr>
<td><em>Item 1</em></td>
<td><strong>Item 2</strong></td>
<td><s>Item 3</s></td>
</tr>
</table>
<br>
<p>Content after the table</p>
<br>
<div class="div2">
<ul>
<li><p>This is a div that</p></li>
<li><p>tests proper termination of list</p></li>
<li><p>within it</p></li>
</ul>
</div>
<br>
<p>Here is a quote:</p>
<blockquote><p> You miss 100%</p>
<p> of the shots</p>
<p> you don't take</p>
</blockquote></body>
</html>