diff options
-rw-r--r-- | aliases.map | 1 | ||||
-rw-r--r-- | index.html | 2 | ||||
-rw-r--r-- | writing_minimal_html5_documents_is_fun-1.png (renamed from how_to_write_a_minimal_html5_document-1.png) | bin | 1174 -> 1174 bytes | |||
-rw-r--r-- | writing_minimal_html5_documents_is_fun.html (renamed from how_to_write_a_minimal_html5_document.html) | 8 |
4 files changed, 6 insertions, 5 deletions
diff --git a/aliases.map b/aliases.map index 122ea87..cefe1d3 100644 --- a/aliases.map +++ b/aliases.map @@ -9,3 +9,4 @@ /how_to_create_generic_interfaces_by_example_of_storing_files_in_arbitrary_memory.html /playing_around_with_simple_interfaces.html; /how_to_create_templates_with_shell_cat_and_envsubst.html /how_to_generate_files_from_templates_in_shell.html; /the_gentlest_introduction_to_building_with_makefiles.html /how_to_build_software_with_make.html; +/how_to_write_a_minimal_html5_document.html /writing_minimal_html5_documents_is_fun.html; @@ -79,7 +79,7 @@ software and hardware engineering. I post here my projects, experiments, and wha <time>2021-01-07</time> <li> <a href="dear_imgui_and_love.html">Dear ImGui and LÖVE,</a><br> <time>2020-08-14</time> -<li> <a href="how_to_write_a_minimal_html5_document.html">How to Write a Minimal HTML5 Document</a><br> +<li> <a href="writing_minimal_html5_documents_is_fun.html">Writing Minimal HTML5 Documents is Fun</a><br> <time>2020-08-03</time> <li> <a href="web_browsers_are_no_more.html">Web Browsers Are No More</a><br> <time>2020-07-28</time> diff --git a/how_to_write_a_minimal_html5_document-1.png b/writing_minimal_html5_documents_is_fun-1.png Binary files differindex 01ccae3..01ccae3 100644 --- a/how_to_write_a_minimal_html5_document-1.png +++ b/writing_minimal_html5_documents_is_fun-1.png diff --git a/how_to_write_a_minimal_html5_document.html b/writing_minimal_html5_documents_is_fun.html index 9db74be..c2960ed 100644 --- a/how_to_write_a_minimal_html5_document.html +++ b/writing_minimal_html5_documents_is_fun.html @@ -3,16 +3,16 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="author" content="aki"> -<meta name="tags" content="tutorial, template, minimal, valid, html5, web page, document"> +<meta name="tags" content="minimal, valid, html5, web page, document"> <link rel="icon" type="image/png" href="favicon.png"> <link rel="stylesheet" type="text/css" href="style.css"> -<title>How to Write a Minimal HTML5 Document</title> +<title>Writing Minimal HTML5 Documents is Fun</title> <nav><p><a href="https://ignore.pl">ignore.pl</a></p></nav> <article> -<h1>How to Write a Minimal HTML5 Document</h1> +<h1>Writing Minimal HTML5 Documents is Fun</h1> <p class="subtitle">Published on 2020-08-03 18:18:00+02:00 <p>Yes, I know how it sounds to have both "HTML" and "minimal" in one sentence. I think it's possible to accomplish that and I'll show you how. Before we start, let's set some rules:</p> @@ -33,7 +33,7 @@ interprets it. <p>In case of doubts consult <a href="https://validator.w3.org/nu/">W3's checker</a>. You must insert the code yourself, as they don't support this kind of links.</p> -<img src="how_to_write_a_minimal_html5_document-1.png" alt="html5 logo"> +<img src="writing_minimal_html5_documents_is_fun-1.png" alt="html5 logo"> <p>Now then, that's not quite useful, but it clearly indicates that we can skip tags. We can skip a lot of tags and the document will remain valid. First of all, you can skip <code>head</code> and <code>body</code> elements entirely, |