<?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/sq4fqq/">
    <title>@まとめサイト</title>
    <link>http://w.atwiki.jp/sq4fqq/</link>
    <atom:link href="https://w.atwiki.jp/sq4fqq/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>@まとめサイト</description>

    <dc:language>ja</dc:language>
    <dc:date>2007-02-17T13:21:36+09:00</dc:date>
    <utime>1171686096</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/7.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/6.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/5.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sq4fqq/pages/4.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/13.html">
    <title>javascript</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/13.html</link>
    <description>
      ***javascriptの練習
&lt;script type=&quot;text/javascript&quot;&gt;
alert(&quot;こんにちは。世界。&quot;);
&lt;/script&gt;

----

&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
document.write(&quot;Javascriptの練習：JSで記述&quot;);
//--&gt;
&lt;/script&gt;

----

&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
var txt=&quot;田中肖像&quot;
document.write(txt)
//--&gt;
&lt;/script&gt;

実行結果　田中肖像

&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
txt=6;     //変数の定義
document.write(txt); //文字を記述する定型分。
//--&gt;
&lt;/script&gt;

実行結果　６

----

関数の呼び出し

function txtWrite(){
document.write(&quot;出時針&quot;);
｝

&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
txtWrite();
//--&gt;
&lt;/script&gt;

実行結果　出時針


----
外部ファイル
shared/js/にcopy.jsファイルを置く
&lt;script type=&quot;text/javascript&quot; src=&quot;shared/js/copy.js&quot;&gt;&lt;/script&gt;


----

if文

&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
var myColor=&quot;red&quot;;	//変数の定義

if(myColor==&quot;red&quot;){
document.write(&quot;&lt;font color=&#039;red&#039;&gt;今日は赤い気分です。&lt;/font&gt;&quot;);
} else{
document.write(&quot;今日は赤い気分じゃないです。&quot;);
}
//--&gt;
&lt;/script&gt;


----
if文２
途中で条件が真になると評価(if文)から抜ける。

&lt;p&gt;
&lt;script type=&quot;text/javas    </description>
    <dc:date>2007-02-17T13:21:36+09:00</dc:date>
    <utime>1171686096</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/12.html">
    <title>firefox</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/12.html</link>
    <description>
      **firefox
-プラグインで構造などがわかる
--関連サイト[www.studynet.jp][ブラウザ]    </description>
    <dc:date>2007-02-07T19:51:48+09:00</dc:date>
    <utime>1170845508</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/11.html">
    <title>php</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/11.html</link>
    <description>
      **php練習１
-dreamwever
--サイト管理→新規作成→サイト
--htmlファイルで
&lt;p&gt;名前を入力してください。&lt;/p&gt;
&lt;form action=&quot;test.php&quot; method=&quot;post&quot;&gt;
&lt;input name=&quot;namae&quot; type=&quot;text&quot; size=&quot;20&quot; maxlength=&quot;20&quot; /&gt;
&lt;input name=&quot;submit&quot; type=&quot;submit&quot; value=&quot;送信&quot; /&gt;
&lt;/form&gt;
-新規→ダイナミックページ→php
--phpファイルで
こんにちは、&lt;?php echo $_POST[&quot;name&quot;];?&gt;さん
→こんにちは○○さんと出力される

-&lt;?php
//コメント
/*
複数行のコメント
複数行のコメント
複数行のコメント
*/
$school =&quot;デジハリ&quot;;
echo &quot;私は、$school に通っています&lt;br /&gt;&quot;;
echo &quot;私は、{$school}に通っています&lt;br /&gt;&quot;;
echo &#039;私は、{$school}に通っています&lt;br /&gt;\n&#039;;
echo &quot;私は、&quot;.$school.&quot;に通っています&lt;br /&gt;\n&quot;;
echo &quot;私は、&lt;font color=\&quot;red\&quot;&gt;$school&lt;/font&gt;に通っています&lt;br /&gt;\n&quot;;
echo &quot;私は、&lt;font color=&#039;red&#039;&gt;$school&lt;/font&gt;に通っています&lt;br /&gt;\n&quot;;
?&gt;

→私はデジハリ に通っています。
→私はデジハリに通っています。
→私は、{$school}に通っています
\n 
→\n私は、デジハリに通っています
→私は、デジハリに通っています
→私は、デジハリに通っています

-＠がエラーでていると全角使用

----

-Apach
--documentroot○○○で公開される場所を変更できる。

----

-php.iniの設定
--httpd.conf、php.iniが編集できない共有サーバのユーザは、
.htaccessを利用する。
&lt;設定例&gt;
php.ini
mbstring.language=&quot;japanese&quot;
↓
.htaccess
php_v    </description>
    <dc:date>2007-02-28T19:46:12+09:00</dc:date>
    <utime>1172659572</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/10.html">
    <title>xhtml</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/10.html</link>
    <description>
      ***xhtmlの書き方
**hr→&lt;hr /&gt;
**br→&lt;br /&gt;    </description>
    <dc:date>2007-02-03T11:39:16+09:00</dc:date>
    <utime>1170470356</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/9.html">
    <title>dreamweaver</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/9.html</link>
    <description>
      ***dreamweaverの使い方
[[xhtml]]
**トラジショナル→許容する
**ストラクト→厳密に作る

-center揃えにする場合
text中央揃え→全て真ん中になる。
contenarのIDに対して余白０、マージンの右と左だけ自動その他は０．
contenarのテキスト揃えを左にする

**p
size→80％
linehight→150％    </description>
    <dc:date>2007-02-03T13:04:21+09:00</dc:date>
    <utime>1170475461</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/8.html">
    <title>ディレクトリ構造</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/8.html</link>
    <description>
      ***HTML

-デザインと構造（マークアップ）どちらを優先するか
→どちらでも可（HTMLを意識してデザインする事も大事）
-コンテンツが重要な方を先に書く。

-ディレクトリ構造
--修正、見やすいようにきちんと階層化する。また、階層ごとに管理すると、フォルダを複製するだけでコンテンツを増やせる。
--index.htmlは省略してよいというルールがある。トップページにindex.htmlがなくても見えるのはこのため。
--webフォルダのルートには、必ずindex.html（あるいはindex.phpなど）が存在しなければならない。index.htmlがないと、サーバーにあるフォルダの中身が見えてしまうので注意。
--ひとつ上を参照する場合のファイルパスは、../

-例

web
┗shared
　 ┗img（全ページ共通で使う画像をしまうフォルダ）

┗profile
　 ┗img（プロフィールでしか使わない画像をしまうフォルダ）
　 ┗index.html（プロフィールのページ）

┗gallery
　 ┗img（ギャラリーでしか使わない画像をしまうフォルダ）
　 ┗index.html（ギャラリーのページ）

┗link
　 ┗img（リンクでしか使わない画像をしまうフォルダ）
　 ┗index.html（ギャラリーのページ）

┗index.html（トップページ）

参考サイト
http://www.kanzaki.com/docs/html/htminfo-uri.html    </description>
    <dc:date>2007-02-03T11:41:10+09:00</dc:date>
    <utime>1170470470</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/7.html">
    <title>fireworks</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/7.html</link>
    <description>
      ***fireworksの使い方
-その他
--ＷＥＢのシャドウ
---３０px程度の余白を取る
---線型→グラデーション→乗算→透明度    </description>
    <dc:date>2007-02-01T03:13:54+09:00</dc:date>
    <utime>1170267234</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/6.html">
    <title>illustrator</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/6.html</link>
    <description>
      ***illstratorの使い方    </description>
    <dc:date>2007-02-01T02:54:13+09:00</dc:date>
    <utime>1170266053</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/5.html">
    <title>fhotoshop</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/5.html</link>
    <description>
      ***fhotoshopの使い方    </description>
    <dc:date>2007-02-01T02:53:46+09:00</dc:date>
    <utime>1170266026</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sq4fqq/pages/4.html">
    <title>CSS</title>
    <link>https://w.atwiki.jp/sq4fqq/pages/4.html</link>
    <description>
      ***CSSでレイアウト    </description>
    <dc:date>2007-02-01T02:53:17+09:00</dc:date>
    <utime>1170265997</utime>
  </item>
  </rdf:RDF>
