2014年12月07日

作成日を記入するメタタグ

作成日のメタタグは下記のように書きます。
<meta name="creation_date" content="作成日" />
《例》
<meta name="creation date" content="December 7, 2014" />

<meta name="creation date" content="2014.12.07" />
posted by benri-waza at 14:01| Comment(0) | HTML

2014年11月07日

<ol>の番号をABCに変更する方法

番号付きリストの番号をABCの英字に変更します。

<ol type="A">
<li>リスト1</li>
<li>リスト2</li>
<li>リスト3</li>
</ol>

実行結果
  1. リスト1
  2. リスト2
  3. リスト3

posted by benri-waza at 11:11| Comment(0) | HTML

<ol>の開始番号を変更する方法

番号付きリストの開始番号を変更します。

<ol start="7">
<li>リスト1</li>
<li>リスト2</li>
<li>リスト3</li>
</ol>

実行結果
  1. リスト1
  2. リスト2
  3. リスト3

posted by benri-waza at 11:00| Comment(0) | HTML