コピペで使えるHTMLテンプレート集
私がよく使用するHTMLテンプレートを、コピペで使えるようにまとめました。
HTML
<!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>
TABLE
<table> <tr> <th></th> <th></th> </tr> <tr> <td></td> <td></td> </tr> </table>
UL
<ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul>
OL
<ol> <li></li> <li></li> <li></li> <li></li> <li></li> </ol>
HTML内CSS
<style type="text/css"> <!-- p { /* 本文サンプル */ color:#000000; line-height:1.5; } --> </style>
HTML内JavaScript
<script language="JavaScript"> <!-- function sampleMethod() { // 本文 } --> </script>