HTML HTML5 HTMLタグ スマートフォン |
CSS CSSプロパティ CSS・HTML便利ツール |
HTML色見本 配色組み合わせツール 特殊文字 |
JAVA Android |
PHP Smarty修飾子 EXCEL |
*このページは web-dou.com のアーカイブです。(2025年 サイト統合)
1 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
1 | <!DOCTYPE html> |
1 | <!DOCTYPE HTML SYSTEM "about:legacy-compat" > |
*大文字・小文字は区別されず、ダブルクオート・シングルクオートどちらでもOKです。
1 | <meta http-equiv= "Content-Type" content= "text/html;charset=UTF-8" > |
1 | <meta charset= "UTF-8" > |
1 2 | <img> ~ </img> <br> ~ </br> |
1 | <br> <br/> <br /> |
1 2 3 | <input type= "checkbox" checked> <input type= "checkbox" checked= "checked" > <input type= "checkbox" checked= "" > |
1 2 3 | <input type= "text" > <input type= 'text' > <input type=text> |
*属性値に「=」などを含む場合は「"」などで囲んで下さい。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <!DOCTYPE html> <html lang= "ja" > <head> <meta charset= "utf-8" /> <title>タイトル</title> <link rel= "stylesheet" href= "/app/web-dou/css/style.css" /> <script src= "/app/web-dou/js/sample.js" ></script> <style> h1 { color: blue; } </style> </head> <body> <!-- コンテンツ部分 --> <h1>タイトル!</h1> あいうえお </body> </html> |