bold-in-output.html (359B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style> 6 * { font-weight: bolder } 7 </style> 8 <script> 9 document.addEventListener("DOMContentLoaded", () => { 10 document.querySelector("output").focus(); 11 document.execCommand("selectAll"); 12 document.execCommand("bold"); 13 }) 14 </script> 15 </head> 16 <body> 17 <output contenteditable="true"> 18 A 19 </output></body> 20 </html>