********************** 

     ◆◇◆タグメモ◆◇◆

**********************


【リンクタグコピペ用】
<a href="#.html" target="_blank"></a> 


【リンクタグ説明】
・<a href="☆☆">リンク先</a> を用います。
・元ページを残して別ウィンドウを開く場合は「 target="_blank" 」を使用。
・フレームを全部解除してウィンドウを開く場合は「 target="_top" 」を使用。
・フレームを1つだけ解除してしてウィンドウを開く場合は「 target="_paren" 」を使用。
・ファイルが同じサーバにある時は、http://〜を省略することができます。
・ファイルがひとつ上のフォルダにある場合は「../」(ドットドット)を使う。
   →<a href="../index.html">
・i-modeでキーを割り振る場合は「cti=キー」を使用。
   →0〜9、アスタリスク(*)、シャープ(#)などが指定できます。
――――――――――――


【リンク線を消す】
☆リンク下線を消すには「style="text-decoration:none;"」を使用。
   →<a href="#.html" target="_blank" style="text-decoration:none;">
☆ページごとリンク線を消す場合は→<head>と</head>の間に書き込みます。
<style type="text/css">
<!--
 a { text-decoration:none }
-->
</style>

☆細かく指定する事もできます。→<head>と</head>の間に書き込みます
<style type="text/css">
<!--
 a:link {text-decoration:none; color: #☆☆☆☆☆☆;}
 a:visited {text-decoration:none; color: #☆☆☆☆☆☆;}
 a:active {text-decoration:none; color: #☆☆☆☆☆☆;}
 a:hover { color: #☆☆☆☆☆☆;} 
-->
</style>
   →ポインターが乗った時だけ下線表示
――――――――――――


【任意の場所に飛ぶ】
☆本文の任意の場所にリンクするタグ。
<a name="top">☆</a> -----☆リンク先
   →任意の文字・画像に「name」をつけ(半角英字)マーク。
<a href="#top">リンク</a> ----☆リンク元
   →「name」で指定した場所に飛ぶリンクを貼ります。
――――――――――――


【画像入替えリンクボタン完成セット】
<!-- エンターボタン -->
<a href="☆☆.html"><img src="☆☆" width="☆☆" height="☆☆" onmouseover="this.src='☆☆'" onmouseout="this.src='☆☆'" border="0" alt="☆☆"></a>
<!-- エンターボタン -->
――――――――――――


【リンクをクリックでウィンドウを閉じる】
<a href="#" onclick="window.close()">閉じる</a> 
<a href="Javascript:onClick=top.close()">閉じる</a>
<a href="JavaScript:window.close()">このウィンドウを閉じる</a>
――――――――――――
●ジャバスクリプトで閉じるボタン
<head>
<SCRIPT type="text/JavaScript">
<!--
function showMsgboxYN(){
if(confirm("画面を閉じていいですか?")==true){
window.close();
}
}
//-->
</SCRIPT>
</head>

<FORM action="☆☆.html">
<INPUT TYPE="button" VALUE="とじる" onClick="window.close()" onkeypress="alert('OK')">
</FORM>
――――――――――――





【さがえんコピペ用】
●topへもどる
<a name="top">☆☆☆</a>
<a href="#top">topへもどる↑</a><br>

――――――――――――
●ハウス画像ホームへ戻るセット
<!-- 上部リンク -->
<div align="left" style="margin: 5px 0px 0px 20px;">
<a href="http://jmac.dma-j.net/obi/SEC/home.html" target="_blank"><img src="http://jmac.dma-j.net/obi/SEC/img_sec/house.gif" width="55" height="18" border="0" alt="ホームページへリンク"></a>
</div>
<!-- 上部リンク -->

――――――――――――
●桂の葉画像ホームへ戻るセット
<!-- 上段ホームへリンク葉 -->
<div align="left" style="margin: 5px 0px 0px 20px;">
<a name="top"><img src="http://jmac.dma-j.net/obi/SEC/img_sec/miniha.gif" width="12" height="12" alt="葉画像" border="0"></a><a href="http://jmac.dma-j.net/obi/SEC/SEC_index.html"><font size="2"><strong>ホームへ戻る</strong></font></a>
</div>
<!-- 上段ホームへリンク葉 -->

――――――――――――
●画像入れ換えプロデュースリンクセット
<!-- さがみえんためくらぶ画像入れ替えロゴ -->
<div align="center" style="margin: 50px 0px 0px 0px;">
<a href="http://jmac.dma-j.net/obi/SEC/home.html" target="_blank">
<img src="http://jmac.dma-j.net/obi/SEC/img_sec/produceby_link.gif" width="400" height="135" border="0" onmouseover="this.src='http://jmac.dma-j.net/obi/SEC/img_sec/produceby2_link.gif'" onmouseout="this.src='http://jmac.dma-j.net/obi/SEC/img_sec/produceby_link.gif'" alt="創作・学習支援サイトさがみえんためくらぶへリンク">
</a>
</div>
<!-- さがみえんためくらぶ画像入れ替えロゴ -->

――――――――――――
●サガミえんため倶楽部コンテンツ表示文字
<!-- サガミえんため倶楽部コンテンツ表示文字 -->
<div align="center" style="
margin: 30px 0px 10px 0px;
 font-size: 8pt;
 color: #3399cc;">
It is the part of this page <a href="http://jmac.dma-j.net/obi/SEC/home.html">サガミえんため倶楽部</a> contents.
</div>
<!-- サガミえんため倶楽部コンテンツ表示文字 -->
――――――――――――


――――――――――――
</plaintext></pre>