ウェブ学のすすめ

Study of Web Design & Programing

2012-04-28から1日間の記事一覧

テーブルタグ「table」とは

tableタグは、trやtdなどと一緒に用いて表を表示させるために使います。 読み方・正式名称 table(テーブル):table tr(ティーアール):table row td(ティーディー):table head th(ティーエイチ):table description 記述例 <table summary="iPhoneの種類"> <tr> <th>機種</th><th>発売開始日</th> </tr> <tr> <th>iPhone 4S</th><td></td></tr></table>…

定義型リスト「dl」「dt」「dd」とは

読み方と正式名称 dl(ディーエル):definition list dt(ディーティー):definition term dd(ディーディー):definition description 記述例 用語の定義 <dl> <dt>用語</dt> <dd>定義</dd> </dl> 更新情報 <dl> <dt>更新日付</dt> <dd>更新内容</dd> </dl> 表示例 URL Uniform Resource Locatorの略。 インター…