aboutsummaryrefslogtreecommitdiff
path: root/src/blog/2025-06-06-webdev/webdev.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/blog/2025-06-06-webdev/webdev.md')
-rw-r--r--src/blog/2025-06-06-webdev/webdev.md8
1 files 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
index fa02ab3..6b049e5 100644
--- a/src/blog/2025-06-06-webdev/webdev.md
+++ b/src/blog/2025-06-06-webdev/webdev.md
@@ -418,15 +418,15 @@ index.html:
418<!doctype html> 418<!doctype html>
419<html lang="en-US"> 419<html lang="en-US">
420<head> 420<head>
421 <meta charset="utf-8" /> 421 <meta charset="utf-8">
422 <meta name="viewport" content="width=device-width" /> 422 <meta name="viewport" content="width=device-width">
423 <title>Multiply two numbers</title> 423 <title>Multiply two numbers</title>
424 <script src="./script.js" defer></script> 424 <script src="./script.js" defer></script>
425</head> 425</head>
426 426
427<body> 427<body>
428 <p> 428 <p>
429 <input id="aInput" /> x <input id="bInput" /> 429 <input id="aInput"> x <input id="bInput">
430 <button id="goButton">=</button> 430 <button id="goButton">=</button>
431 <span id="resultText"></span> 431 <span id="resultText"></span>
432 </p> 432 </p>
@@ -467,7 +467,7 @@ button.addEventListener("click", () => {
467The final result will look something like this: 467The final result will look something like this:
468 468
469<p style="text-align:center"> 469<p style="text-align:center">
470<input id="aInput" /> x <input id="bInput" /> 470<input id="aInput"> x <input id="bInput">
471<button id="goButton">=</button> 471<button id="goButton">=</button>
472<span id="resultText"></span> 472<span id="resultText"></span>
473</p> 473</p>

Generated with cgit - Back to sebastiano.tronto.net