doc_content_stylesheet.html (734B)
1 <html> 2 <head> 3 <title>test</title> 4 5 <link href="./doc_content_stylesheet_linked.css" rel="stylesheet" type="text/css"> 6 7 <script> 8 /* eslint no-unused-vars: [2, {"vars": "local"}] */ 9 "use strict"; 10 // Load script.css 11 function loadCSS() { 12 const link = document.createElement("link"); 13 link.rel = "stylesheet"; 14 link.type = "text/css"; 15 link.href = "./doc_content_stylesheet_script.css"; 16 document.getElementsByTagName("head")[0].appendChild(link); 17 } 18 </script> 19 20 <style> 21 table { 22 border: 1px solid #000; 23 } 24 </style> 25 </head> 26 <body onload="loadCSS();"> 27 <table id="target"> 28 <tr> 29 <td> 30 <h3>Simple test</h3> 31 </td> 32 </tr> 33 </table> 34 </body> 35 </html>