コピペで使えるHTMLテンプレート集

私がよく使用するHTMLテンプレートを、コピペで使えるようにまとめました。
HTML
<code> <!DOCTYPE html> <html> <head> <title></title> <!-- CSS読み込み --> <link rel="stylesheet" type="text/css" href="sample.css"> <!-- JavaScript読み込み --> <script type="text/javascript" src="sample.js"></script> <head> <body> <!-- 本文 --> </body> </html> </code>
TABLE
<code> <table> <tr> <th></th> <th></th> </tr> <tr> <td></td> <td></td> </tr> </table> </code>
UL
<code> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </code>
OL
<code> <ol> <li></li> <li></li> <li></li> <li></li> <li></li> </ol> </code>
HTML内CSS
<code> <style type="text/css"> <!-- p { /* 本文サンプル */ color:#000000; line-height:1.5; } --> </style> </code>