2022-12-29 13:41:39 -05:00
<!DOCTYPE html>
2023-01-04 12:38:23 -05:00
< html lang = "en" >
2022-12-29 13:41:39 -05:00
< head >
2022-12-29 14:17:59 -05:00
2023-01-04 10:43:27 -05:00
2023-01-04 15:09:58 -05:00
2023-01-04 08:55:28 -05:00
< link rel = "stylesheet" href = "test_css.css" >
2022-12-29 13:41:39 -05:00
< title > Test webpage< / title >
< meta name = "viewport" content = "width=device-width,initial-scale=1.0" >
< meta charset = "UTF-8" >
< / head >
2022-12-29 11:21:53 -05:00
< body >
2022-12-28 16:44:57 -05:00
< h1 > Hello < code > world< / code > !< / h1 >
2023-01-04 13:35:28 -05:00
2022-12-28 16:44:57 -05:00
< h2 > Hello world!< / h2 >
2023-01-04 13:35:28 -05:00
2022-12-28 16:44:57 -05:00
< h3 > Hello world!< / h3 >
2023-01-04 13:35:28 -05:00
2022-12-28 16:44:57 -05:00
< h4 > Hello < strong > < em > world< / em > < / strong > !< / h4 >
2023-01-04 13:35:28 -05:00
2022-12-29 14:17:59 -05:00
< h1 > This was included from a separate file!< / h1 >
2023-01-04 13:35:28 -05:00
2022-12-29 11:51:11 -05:00
< p > < a href = "https://example.com" > Example website< / a > < / p >
2023-01-04 13:35:28 -05:00
2022-12-29 11:51:11 -05:00
< p > < img src = "usbs.png" alt = "Example image" > < / p >
2023-01-04 13:35:28 -05:00
2023-01-04 08:55:28 -05:00
< p > < video src = "test_video.webm" type = "video/webm" controls = "true" > Example video< / video > < / p >
2023-01-04 13:35:28 -05:00
2022-12-29 11:21:53 -05:00
< ul >
2023-01-04 12:07:33 -05:00
< li > < p > unordered < s > item 1< / s > < / p > < / li >
2023-01-04 13:35:28 -05:00
2023-01-04 12:07:33 -05:00
< li > < p > unordered < mark > item 2< / mark > < / p > < / li >
2023-01-04 13:35:28 -05:00
2022-12-29 11:21:53 -05:00
< li > < p > unordered item 3< / p > < / li >
< / ul >
2023-01-04 13:35:28 -05:00
2022-12-29 11:21:53 -05:00
< ol >
< li > < p > ordered item 1< / p > < / li >
2023-01-04 13:35:28 -05:00
< / ul >
2022-12-29 11:21:53 -05:00
< li > < p > ordered item 2< / p > < / li >
< / ol >
2023-01-04 13:35:28 -05:00
< ul >
< li > < p > unordered item after ordered 1< / p > < / li >
< li > < p > unordered item after ordered 2< / p > < / li >
< / ul >
2022-12-29 11:21:53 -05:00
< pre >
< code >
2023-01-04 13:35:28 -05:00
2022-12-29 11:21:53 -05:00
#include < stdio.h>
2023-01-04 13:35:28 -05:00
2022-12-29 11:21:53 -05:00
int main() {
2023-01-04 13:35:28 -05:00
2022-12-29 11:21:53 -05:00
printf("%s\n", "Hello World!");
2023-01-04 13:35:28 -05:00
2022-12-29 11:21:53 -05:00
return 0;
2023-01-04 13:35:28 -05:00
2022-12-29 11:21:53 -05:00
}
< / code >
< / pre >
2023-01-04 13:35:28 -05:00
2023-06-07 10:36:01 -04:00
< br >
2023-01-04 13:35:28 -05:00
2023-01-04 12:38:23 -05:00
< 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 >
2023-01-04 14:57:27 -05:00
< img class = "teximg" src = "./teximg/05e525335903ae89ce2a72ebe2582879.png" alt = "e^{i \pi} + 1 = 0" >
2023-01-04 15:09:58 -05:00
2023-06-07 10:36:01 -04:00
< br >
2023-01-04 15:09:58 -05:00
< div class = "monospace-text" >
< p > This is a div that has monospace text.< / p >
< / div >
2023-07-11 09:45:51 -04:00
< p id = "lastupdated" > Last updated: Tue Jul 11 09:45:26 2023< / p >
2023-07-09 18:14:06 -04:00
< 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 >
2022-12-29 11:21:53 -05:00
< / body >
< / html >