head内
タイトルタグ
<title>サンプルサイト │ はずけい</title>
32文字以内を目安にする。
discripton
<meta name="description" content="○○について解説しているサイトです。">
110文字以内を目安とする。
Aタグ
<a href="https://test.html" target="_blank">あいうえお</a>
imageタグ
<img src="img/terazii.jpg" width="100px" height="100px" >
サイズの指定
font-sizeを絶対値で指定する「px」
親要素のfont-sizeを1として指定する「em」
文書のルートであるhtml要素のfont-sizeを1として指定する「rem」
表示、非表示の変更
非表示
style="display:none;"
表示
style="display:block;"
テキストエリア
<textarea name="nameList" rows="10" cols="10">あいうえお</textarea>
デフォルト文字を改行したい場合は、下記のようにする。
<textarea name="nameList" rows="10" cols="10">
あいうえお
かきくけこ
</textarea>