HTMLの雛形
冒頭
DOCTYPE宣言を書く
code:index.html
<!DOCTYPE html>
HTML5ならこれだけでいい
旧versionは知らんtakker.icon
本体
<html>タグから始める
code:index.html
<html>
<thead>ブロック
メタデータとかを書く
<meta charset="UTF-8">と<title>を書いておけばいい
code:index.html
<head>
<title>タイトル</title>
<meta charSet="utf-8" />
</head>
他に書けるものは<meta>-HTML5タグリファレンスあたりを参照
<body>ブロック
code:index.html
<body>
</body>
code:index.html
</html>
ここから先の話
文章構造を考慮してHTMLを書く
#html
#2022-12-05 10:14:25