sebastiano.tronto.net

Source files and build scripts for my personal website
git clone https://git.tronto.net/sebastiano.tronto.net
Download | Log | Files | Refs | README

commit 0f564347ca3b5e3dbe7e5792b35689ab42c3c6f5
parent 9523934828403b93a29f2c139366a7bcf2ae33c9
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Mon,  9 Jun 2025 09:14:15 +0200

Fix HTML void tags

Diffstat:
Msrc/blog/2025-06-06-webdev/webdev.md | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/blog/2025-06-06-webdev/webdev.md b/src/blog/2025-06-06-webdev/webdev.md @@ -418,15 +418,15 @@ index.html: <!doctype html> <html lang="en-US"> <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width" /> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width"> <title>Multiply two numbers</title> <script src="./script.js" defer></script> </head> <body> <p> - <input id="aInput" /> x <input id="bInput" /> + <input id="aInput"> x <input id="bInput"> <button id="goButton">=</button> <span id="resultText"></span> </p> @@ -467,7 +467,7 @@ button.addEventListener("click", () => { The final result will look something like this: <p style="text-align:center"> -<input id="aInput" /> x <input id="bInput" /> +<input id="aInput"> x <input id="bInput"> <button id="goButton">=</button> <span id="resultText"></span> </p>