mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-02 19:39:57 +00:00
34 lines
658 B
HTML
34 lines
658 B
HTML
<html>
|
|
<head>
|
|
<title>test</title>
|
|
|
|
<link href="./doc_content_stylesheet_linked.css" rel="stylesheet" type="text/css">
|
|
|
|
<script>
|
|
// Load script.css
|
|
function loadCSS() {
|
|
var link = document.createElement('link');
|
|
link.rel = 'stylesheet';
|
|
link.type = 'text/css';
|
|
link.href = "./doc_content_stylesheet_script.css";
|
|
document.getElementsByTagName('head')[0].appendChild(link);
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
table {
|
|
border: 1px solid #000;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body onload="loadCSS();">
|
|
<table id="target">
|
|
<tr>
|
|
<td>
|
|
<h3>Simple test</h3>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|