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