<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/tag-dictionary/">
    <title>タグ事典@wiki</title>
    <link>http://w.atwiki.jp/tag-dictionary/</link>
    <atom:link href="https://w.atwiki.jp/tag-dictionary/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>タグ事典@wiki</description>

    <dc:language>ja</dc:language>
    <dc:date>2006-09-17T11:11:12+09:00</dc:date>
    <utime>1158459072</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/6.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/4.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tag-dictionary/pages/7.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/6.html">
    <title>&lt;html&gt;</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/6.html</link>
    <description>
      *&lt;html&gt;

HTML文書であることを宣言する。

サンプル
----
&amp;color(darkorange){&lt;html&gt;}
[[&lt;head&gt;]]
&lt;title&gt;サンプル&lt;/title&gt;
&lt;/head&gt;
[[&lt;body&gt;]]
[[&lt;p&gt;]]サンプルです。&lt;html&gt;はこの文書がＨＴＭＬ形式で書かれていることをブラウザに示すだけなので視覚には影響はありません。&lt;/p&gt;
&lt;/body&gt;
&amp;color(darkorange){&lt;/html&gt;}
----
[[サンプルを表示&gt;http://www.geocities.jp/tag_dictionary_sample/html.html]]
----
関連タグ
-[[&lt;head&gt;]]
-[[&lt;body&gt;]]
-[[&lt;!DOCTYPE&gt;]]    </description>
    <dc:date>2006-09-17T11:11:12+09:00</dc:date>
    <utime>1158459072</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/14.html">
    <title>&lt;b&gt;</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/14.html</link>
    <description>
      *&lt;b&gt;

囲んだテキストを太文字にする。

※&lt;b&gt;は太文字にするだけで、強調等はしていません。強調したい場合は
-[[&lt;em&gt;]]
-[[&lt;strong&gt;]]
を使ってください。

**サンプル
----
[[&lt;html&gt;]]
[[&lt;head&gt;]]
&lt;title&gt;サンプル&lt;/title&gt;
&lt;/head&gt;
[[&lt;body&gt;]]
[[&lt;p&gt;]]タグ事典@wikiは&lt;b&gt;とっても&lt;/b&gt;便利！&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
----
[[サンプルを表示&gt;http://www.geocities.jp/tag_dictionary_sample/b.html]]
----    </description>
    <dc:date>2006-09-17T11:04:52+09:00</dc:date>
    <utime>1158458692</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/12.html">
    <title>&lt;サンプル&gt;</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/12.html</link>
    <description>
      *&lt;xx&gt;

ここにxxの説明

サンプル
----
[[&lt;html&gt;]]
[[&lt;head&gt;]]
&lt;title&gt;サンプル&lt;/title&gt;
&lt;/head&gt;
[[&lt;body&gt;]]
&lt;p&gt;&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
----
[[サンプルを表示&gt;http://www.geocities.jp/tag_dictionary_sample/xx.html]]
----
関連タグ
-[[&lt;zz&gt;]]    </description>
    <dc:date>2006-08-27T14:32:14+09:00</dc:date>
    <utime>1156656734</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/13.html">
    <title>&lt;meta&gt;</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/13.html</link>
    <description>
      *&lt;meta&gt;

その文書に関する情報を指定する

**文字コード

-シフトＪＩＳ
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=shift_jis&quot;&gt;
-ＥＵＣ
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=euc-jp&quot;&gt;
-ＪＩＳ
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-2022-jp&quot;&gt;

**文書の内容・キーワード

-文書の内容
&lt;meta name=&quot;description&quot; content=&quot;タグを素早く調べる。&quot;&gt;
-キーワード
&lt;meta name=&quot;keywords&quot; content=&quot;タグ,事典,HTML&quot;&gt;

**検索ロボットに関するmeta

-検索ロボットに登録されなくする
&lt;meta name=&quot;robots&quot; content=&quot;noindex&quot;&gt;
-検索ロボットに文書内のリンクをたどれないようにする
&lt;meta name=&quot;robots&quot; content=&quot;nofollow&quot;&gt;

**基準スタイルシート言語と基準スクリプト言語を指定する

-標準スタイルシート言語を指定する
&lt;meta http-equiv=&quot;Content-Style-Type&quot; content=&quot;text/css&quot;&gt;
-基準スクリプト言語を指定する
&lt;meta http-equiv=&quot;Content-Script-Type&quot; content=&quot;text/javascript&quot;&gt;

**文書の作者を示す
&lt;meta name=&quot;author&quot; content=&quot;ezxweb&quot;&gt;


サンプル
----
[[&lt;html&gt;]]
[[&lt;head&gt;]]
&amp;color(darkorange){&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=euc-jp&quot;&gt;}
&amp;color(darkorange){&lt;meta name=&quot;description&quot; content=&quot;タグを素早く調べる。&quot;&gt;}
&amp;color(darkorange){&lt;meta name=&quot;keywords&quot; content=&quot;タグ,事典,HTML&quot;&gt;}
&amp;color(darkorange){&lt;meta name=&quot;robots&quot; content=&quot;nofollow,noindex&quot;&gt;}
&amp;color(darkorange){&lt;meta name=&quot;author&quot; content=&quot;ezxweb&quot;&gt;}
&lt;title&gt;サンプル&lt;/title&gt;
&lt;/head&gt;
[[&lt;body&gt;]]
[[&lt;p&gt;]]ブラウザには表示されません。&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
----
[[サンプルを表示&gt;http://www.geocities.jp/tag_dictionary_sample/meta.html]]
----
関連タグ
-[[&lt;head&gt;]]    </description>
    <dc:date>2006-08-27T14:30:25+09:00</dc:date>
    <utime>1156656625</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/11.html">
    <title>&lt;p&gt;</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/11.html</link>
    <description>
      *&lt;p&gt;

ひとつの段落であることを表します

**属性
align=&quot;行揃え位置&quot;
-中央揃え＝center
-右揃え＝ right
-左揃え＝left
-（両端揃え＝justy）

サンプル
----
[[&lt;html&gt;]]
[[&lt;head&gt;]]
&lt;title&gt;サンプル&lt;/title&gt;
&lt;/head&gt;
[[&lt;body&gt;]]
&lt;p&gt;段落１&lt;/p&gt;
&lt;p align=&quot;left&quot;&gt;段落２&lt;/p&gt;
&lt;p align=&quot;right&quot;&gt;段落３&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;段落４&lt;/p&gt;

&lt;/body&gt;
&lt;/html&gt;
----
[[サンプルを表示&gt;http://www.geocities.jp/tag_dictionary_sample/p.html]]
----
関連タグ
-[[&lt;a&gt;]]    </description>
    <dc:date>2006-08-27T14:04:44+09:00</dc:date>
    <utime>1156655084</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/10.html">
    <title>&lt;a&gt;</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/10.html</link>
    <description>
      *&lt;a&gt;

リンクをはったり、リンクの出発点と到達点を指定します


**属性
-href=&quot;URL&quot; 
リンク先文書の指定します 
-name=&quot;名前&quot; 
文書内にリンク到達点とするための名前をつけます 
-target=&quot;フレーム名&quot; 
リンク先の文書を表示させるフレーム名を指定します 
-rel=&quot;リンクタイプ&quot; 
この文書から見たリンク先との関係を示します 
-rev=&quot;リンクタイプ&quot; 
リンク先から見たこの文書との関係を示します 
-tabindex=&quot;Tab移動の順番&quot; 
Tabキーを押した際の移動順を割り当てます 
-accesskey=&quot;ショートカットキー&quot; 
ショートカットキーを割り当てます 
-shape=&quot;領域の形状&quot; 
リンク領域の形状を指定します 
-coords=&quot;領域の座標&quot; 
リンク領域の各座標を指定します 

サンプル
----
[[&lt;html&gt;]]
[[&lt;head&gt;]]
&lt;title&gt;サンプル&lt;/title&gt;
&lt;/head&gt;
[[&lt;body&gt;]]
&lt;p&gt;&amp;color(darkorange){&lt;a href=&quot;http://www12.atwiki.jp/tag-dictionary/&quot;&gt;タグ事典@wiki&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;mailto:ezxweb@yahoo.co.jp&quot;&gt;メールが送れます&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;#123&quot;&gt;123と名前を付けた場所へリンクします&lt;/a&gt;&lt;br&gt;
&lt;a name=&quot;#123&quot;&gt;123と名づけられた文章です。&lt;/a&gt;}&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
----
[[サンプルを表示&gt;http://www.geocities.jp/tag_dictionary_sample/a.html
----
関連タグ
-[[&lt;p&gt;]]    </description>
    <dc:date>2006-08-27T13:38:49+09:00</dc:date>
    <utime>1156653529</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/4.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/4.html</link>
    <description>
      *タグ事典＠wiki
この事典では細かく詳しいことは書かれておりません。
意味と使い方だけが書かれた、シンプルな事典です。

詳しいことを書いてくれる方は、自由にお書きください。
その場合、ＩＰアドレスは保存されます。ご了承ください。
また、メンバーになれば、ＩＰアドレスは保存されませんし、その他優遇されます。
メンバー登録されたい方は、管理人までご連絡ください。    </description>
    <dc:date>2006-08-27T13:17:32+09:00</dc:date>
    <utime>1156652252</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/9.html">
    <title>&lt;body&gt;</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/9.html</link>
    <description>
      *&lt;body&gt;

ブラウザに表示される文書本体

サンプル
----
[[&lt;html&gt;]]
[[&lt;head&gt;]]
&lt;title&gt;サンプル&lt;/title&gt;
&lt;/head&gt;
&amp;color(darkorange){&lt;body&gt;}
[[&lt;p&gt;]]実際にブラウザに表示される文字&lt;/p&gt;
&amp;color(darkorange){&lt;/body&gt;}
&lt;/html&gt;
----
[[サンプルを表示&gt;http://www.geocities.jp/tag_dictionary_sample/body.html
----
関連タグ
-[[&lt;html&gt;]]
-[[&lt;head&gt;]]    </description>
    <dc:date>2006-08-27T13:10:47+09:00</dc:date>
    <utime>1156651847</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/8.html">
    <title>&lt;!DOCTYPE&gt;</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/8.html</link>
    <description>
      *&lt;!DOCTYPE&gt;

ドキュメントタイプを宣言する

※このタグには目的に応じて種類が異なります。うまく使い分けてください。

-Strict DTD
推奨されていない要素・属性、また、フレームを使用することができません。
要素の配置についても制限があります。
HTML4.01の本来の仕様に従ったスゴク厳密で正確な宣言です。 
初心者にはキツイかもしれません。上級者むけ。

タグ
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt; 

-Transitional DTD
推奨されていない要素や属性は使用できます。
やっぱり、フレームを使用することができません。
要素の配置については制限が少し甘くなっています。初心者向けです。

タグ
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;

-Frameset DTD
Transitional DTDとほぼ同じですが、フレームが使用できます。
フレームを使用するのを許す宣言はこれだけです。フレーム使用者向け。 

タグ
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Frameset//EN&quot; &quot;http://www.w3.org/TR/html4/frameset.dtd&quot;&gt;

**サンプル（サンプルは、Transitional DTDです。）
----
&amp;color(darkorange){&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;}
[[&lt;html&gt;]]
[[&lt;head&gt;]]
&lt;title&gt;サンプル&lt;/title&gt;
&lt;/head&gt;
[[&lt;body&gt;]]
&lt;p&gt;!DOCTYPEはブラウザにHTMLのバージョンとその仕様を宣言するものです。だから、視覚には関係ありません。&lt;/p&gt;
&lt;body&gt;
&lt;/html&gt;
----
[[サンプルを表示&gt;http://www.geocities.jp/tag_dictionary_sample/DOCTYPE.html]]
----
関連タグ
-[[&lt;html&gt;]]
-[[&lt;head&gt;]]
-[[&lt;body&gt;]]    </description>
    <dc:date>2006-08-27T13:03:33+09:00</dc:date>
    <utime>1156651413</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tag-dictionary/pages/7.html">
    <title>&lt;head&gt;</title>
    <link>https://w.atwiki.jp/tag-dictionary/pages/7.html</link>
    <description>
      *&lt;head&gt;

その文書に関する情報を記述する

サンプル
----
[[&lt;html&gt;]]
&amp;color(darkorange){&lt;head&gt;}
&lt;title&gt;サンプル&lt;/title&gt;
&amp;color(darkorange){&lt;/head&gt;}
[[&lt;body&gt;]]
&lt;p&gt;&lt;head&gt;で書かれた情報は&lt;title&gt;以外、ほとんど表示されません。&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
----
[[サンプルを表示&gt;http://www.geocities.jp/tag_dictionary_sample/head.html]]
----
関連タグ
-[[&lt;meta&gt;]]
-[[&lt;title&gt;]]
-[[&lt;link&gt;]]
-[[&lt;html&gt;]]
-[[&lt;body&gt;]]
-[[&lt;!DOCTYPE&gt;]]    </description>
    <dc:date>2006-08-27T12:32:52+09:00</dc:date>
    <utime>1156649572</utime>
  </item>
  </rdf:RDF>
