ホームページ制作ガイド
高木紀久
ホームページ制作ガイド
XHTML1.0
HTML4.01で使用可能な要素や属性をそのまま利用して、XMLの規格に従って定義し直したもの。基本的にはHTML4.01と同じように記述することができる。XMLの文書ともなる。
関連事項:
SGML(Standard Generalized Markup Language)=国際標準規格(ISO8879)
関連する単語
Standard,Generalized,Markup,Language
XML(eXtensible Markup Language)=SGMLの不必要な機能を取り除き、web上で必要となる機能を追加した新しい規格。
関連する単語
eXtensible,Markup,Language,SGML,web
SVG,SMIL,MathML,RDF等=XML言語
関連する単語
S,V,G,I,Math,R,D,F,M,L,XML
XML宣言
XMLのバージョンと使用する文字コードを宣言する。文書の先頭に配置される。
XHTMLの制約
要素名、属性名は必ず小文字で書く。タブは省略できない。属性値は必ず引用符で囲う。属性は最小化できない。識別子にはname属性ではなくid属性を使う。XHTML文書は必ずウェルフォームドにする。
XHTMLのモジュール化
XHTML1.0は、その内容を基にして、関連する機能別のモジュール(テキスト、リスト、テーブル、画像など)に分割されている。「XHTMLのモジュール化(Modularization of XHTML)」とは、それに加えて、新しいモジュールの定義方法や、それらを組み合わせて新しい文書型を定義する方法なども定義した仕様である。これにより、多種多様な環境に合わせた相互運用性の高い文書型を比較的簡単に作成できるようになる。
XHTML1.1
XHTML1.0のモジュールを組み合わせてXHTML1.0を再現し、それにルビのモジュールを追加したもの。
XHTML Basic
携帯電話、PDA、テレビなどで使われることを想定し、必要最小限のモジュールを組み合わせて作られた文書型。
XHTMLのモジュール
モジュール
構造、テキスト、ハイパーテキスト、リスト、メタ情報、関連ファイル、基準URI、表示、編集、ルビ、双方向テキスト、基本フォーム、フォーム、基本テーブル、テーブル、画像、クライアントサイドイメージ・マップ、サーバーサイド・イメージマップ、オブジェクト、アプレット、スクリプト、スタイルシート、フレーム、インライン・フレーム、レガシー、target属性、name属性、style属性、イベント属性
TITLE
文書のタイトルを記述する要素。head要素内に配置される。ここで記述した名前(タイトル)は、多くのブラウザでウインドウのタイトルバーに表示される。
META
メタデータ(文書に関する情報)を指定するための要素。head要素内に記述する。
property
content,name,http-equiv,scheme
http-equiv
メタデータをHTTPヘッダとしてサーバーから送信させたい場合に、name属性の代わりに使用する。→HTTPヘッダ(HTTP response message headers)値はHTTPヘッダ用プロパティ名。
scheme
値は値の形式。プロパティの値を正しく解釈するための補助的な情報として、値の形式を指定する。
HYPER-LINK in the Page
ページ内をハイパーリンクを使って移動する方法。
<a name="任意の文字列">任意の文字列や画像</a>
↑ ↑ ↑
以上のソースコードをハイパーリンク先となる文書ソース内の任意の箇所に貼り付ける。
以下のソースコードをハイパーリンク元となる文書ソース内の任意の箇所に貼り付ける。
↓ ↓ ↓ ↓ ↓
< a href="#<a name="任意の文字列">任意の文字列や画像</a>のname属性に指定した値(文字列)">任意の文字列や画像</a>
完了。
ruby
ルビ。
rb要素、rt要素、rp要素、rbc要素、rtc要素はruby要素の開始タグから終了タグの間に含まれることになる。
RUBY (ルビ)
ルビには、単一ルビと複合ルビの二種類がある。
rb
ruby base
ルビを振る基底の文字や文字列をmarkupする要素。
rt
ruby text
ルビとなる文字や文字列をmarkupする要素。
rp
ruby parenthesis
ルビとなる文字や文字列をくくる括弧をmarkupする要素。括弧でとじられたルビとなる文字や文字列はルビの基底部分の隣に現れる。
rbc
ruby base container
ルビを振る基底の文字や文字列が複数になる場合、グループ化する。
rtc
ruby text container
ルビが複合ルビになる場合、グループ化する。
HTML
HyperTextMarkupLanguage
WEB文書の記述言語の一つ。SGMLによって作られた。おもとしてWEB文書の構造を記述する言語。デザインもこの言語によって表現していた。
CSS等スタイルシート言語がデザインを担当することになる。デザインを整えるための要素や属性も残されている。
KEYWORD(Oneparts)
HTML4.01 CSS1 HTML4.0 DTD XHTML SGML
DTD
DocumentTypeDefinition
正しい文法や構文スタイルを厳密に定義したもの。HTMLのバージョンごとに存在する。そのバージョンのHTMLで使用可能な要素や属性、
また要素の配置に関した用法などがまとめられている。
HTML4.01には三種類のDTDがある。
DTD of HTML4.01
Strict DTD
Transitional DTD
Frameset DTD
KEYWORD
DOCTYPE宣言
Strict DTD
理想的なHTML4.01を作成するためのDTD。非推奨の要素や属性、フレームは使用できない。
厳密度…高 フレームの使用…不可 非推奨要素の使用…不可 非推奨属性の使用…不可
要素の配置の自由度…低
Transitional DTD
非推奨の要素や属性を使用できる。フレームは使用できない。
厳密度…中 フレームの使用…不可 非推奨要素の使用…可 非推奨属性の使用…可
要素の配置の自由度…高
Frameset DTD
非推奨の要素や属性を使用できる。フレーム関連の要素を使用できる。
厳密度…低 フレーム関連の要素の使用…可 非推奨要素の使用…可 非推奨属性の使用…可
要素の配置の自由度…高
SUP
上付き文字(べき等)をmarkupする要素。
X2
HEAD
heading
HTML開始タグの直下に存在する要素。この要素の開始タグから終了タグの間に、TITLE要素、META要素、LINK要素などが配される。
STYLE要素やSCRIPT要素を配することもできる。
BODY
HEAD要素終了タグの直下に存在する要素。文書本体。この開始タグから終了タグの間に、DIV要素、SPAN要素、P要素などが配される。
ブロックレベル要素
ブロック(ひとつのまとまった要素)としてあらわされる要素。
address blockquote center div dl
fieldset form h1~h6 hr noframes
ol p pre table ul
インライン要素
おもとしてブロックレベル要素の中で使用される要素。
a abbr acronym applet b
basefont big br button cite
code dfn em font i
iframe img input kbd label
object q ruby s samp
select small span strike strong
sub sup textarea tt u
置換要素
要素自体がimg objectなどによって置き換えられてあらわされる要素。
img input object select textarea
汎用属性
id
class
lang
title
style
dir
id
固有の名前。要素に対して固有の名前(識別子)を付けるための属性。一つの文書中の複数の要素に対して同じ名前をつけることはできない。
大文字と小文字が区別される。
class
分類名。要素に対して分類上の名前をつけるための属性。同一の文書中で複数の要素が同じクラス名を持つことができる。
大文字と小文字が区別される。
lang
言語コード。要素の内容やそれに関連する属性値などの言語を示すための属性。
title
補足情報。補足的な情報を要素に対し与える。与えられた情報は要素にマウスカーソルを合わせるとポップアップして表示される。
style
スタイルシート。スタイルシートを属性値として直接記述できる。XHTML1.1では非推奨の属性。XHTML Basicでは使用不可。
dir
文字表記の方向。UNICODEによって文字表記の方向が決められていない場合に、文字表記の方向を指定する。
ltr 左から右へ
rtl 右から左へ
XHTML Basicでは使用不可。
sub
下付き文字をmarkupする要素。
CO2
MIMEタイプ
「text/html」
「text/css」
「text/javascript」
「image/gif」
「video/mpeg」等。
URI
HTML3.2までの仕様では「URL(Uniform Resource Locator)」という用語が使用されていた。現在では「URI(Uniform Resource Identifier)」という用語が使用されている。
URL(OLD)
リソースの場所を示す。
URN(OLD)
リソースの名前を示す。
URL,URN(NOW)
2008/6/22NOW.「http:」はURLに属し、「isbn:」はURNに属するといったような階層構造になっていると考えられていたが、その後、「http:」や「isbn:」などのさまざまなスキームをURLやURNとして分類する必要はないと考えられるようになり、それらはいずれもURIスキームのひとつとしてあらわされるようになった。
URLという言葉は非公式の概念という位置付けとなっている。
keywords
URL URN 「http:」 「isbn:」 階層構造 スキーム URIスキーム
リンクタイプ
別文書の属性や、別文書から見た文書の属性を示す場合に指定する。
リンクタイプ 意味
aiternate 別バージョンの文書
stylesheet 外部スタイルシート
start 最初の文書
next 次の文書
prev 前の文書
contents 目次
index 索引
glossary 用語集
copyright 著作権に関して書かれた文書
chapter 章
section 節
subsection 項
appendix 付録
bookmark 文書内のhyper-link先
メディアタイプ
media属性を使用する。メディアを指定する場合に使用する。
メディアタイプ 意味
all すべてのメディア
screen 一般のコンピュータの画面
tty 文字幅が固定の機器(テレタイプ、端末、ポータブル機器等)
tv テレビ
projection プロジェクタ
handheld 携帯用機器
print プリンタ
braille 点字で出力を行うもの(点字ディスプレイ等)
aural 音声による出力(スピーチ・シンセサイザ等)
FORM
FORM
property="value":
action="URL"
method="HTTPメソッド"
enctype="MIMEタイプ"
accept-charset="文字コード"
accept="MIMEタイプ"
name="名前"
target="フレーム名"
textarea
property="value":
rows="行数"
cols="幅"
name="名前"
button
property="value"
name="名前"
input(empty element)
property="value":
type="形式"
形式:
{
text,password,checkbox,radio,
submit,reset,button,
image,file,hidden
}
name="名前"
value="値"
size="幅"
type="形式"
形式:
{
submit,reset,button
}
value="値"
select
property="value"
name="名前"
size="行数"
multiple/multiple="multiple"
★使わなくなった携帯高価買取★
ブログ履歴書を作る「コラブロ」
maxlength ="最大文字数"
checkd/checkd="checkd"
disabled/disabled="disabled"
readonly/readonly="readonly"
accept="MIMEタイプ"
tabindex="tab移動順"
accesskey="ショートカットキー"
src="URL"
alt="代替テキスト"
usemap="URL"
ismap
align="文字との位置関係"
文字との位置関係:
{
top,middle,bottom,left,right
}
---------------------------------
property
disabled/disabled="disabled"
readonly/readonly="readonly"
tabindex="タブ移動順"
accesskey="ショートカットキー"
---------------------------------
汎用property
class,id,title,style,lang,dir,
xml:lang
option
property="value"
selected/selected="selected"
value="値"
lavel="選択肢"
optgroup
property="value"
lavel="選択肢"
lavel
property="value"
for="部品のID"
fieldset
legend
property="value"
align="位置"
位置:
{
top,bottom,left,right
}
isindex(empty element)
property="value"
prompt="ラベル"
SRC
property。SRC="外部ファイルのURL"
P
blocklevel eliement。PARAGRAPH
A
HYPER-LINK設定用element。HYPER-LINKの開始点と終了点を同時に設定できる。
href
Aのproperty。href="リンク先のURL"
HTML
最上位element。
TITLE
header内element。TITLEタグ内に書き込んだ内容がTITLE BARに反映される。
H1
重要度=1等
H2
重要度=2等
H3
重要度=3等
H4
重要度=4等
H5
重要度=5等
H6
重要度=6等
META
empty element。header内element。メタ情報を記述する。
< META property="value" property="value">
NAME
property
< META name="value(property名)" property="value">
keywords
value
< META name="keywords" property="任意のkeyword,任意のkeyword,任意のkeyword,…">
description
value
< META name="description" property="任意のdescription">
content
property
< META name="keywords" content="任意のkeyword,任意のkeyword,任意のkeyword,…">
< META name="description" content="任意のdescription">
HEAD
準最上位element
TITLE elementやMETA elementを記述する。
coords
property
imagemapのproperty。imagemap適用範囲の領域座標を指定する。
alt
property
画像の代替テキスト。画像の描写を記述する。
q
inline eliment
引用文をmarkupする。
HR
empty element
サイズや色を変更できる。
LI
リスト項目の各項目をmarkupする。
blockquote
block level element
引用文をmarkupする。
align
property
3~4(3~8)のvalueを持つ。
FONT
サイズ、色、書体、字体を変更できる。
COLOR
property
前景色を変更できる。
CENTER
alignの一つのvalueと同じ効果を持つelement。
BR
empty element
BODY
本体。
HTML OUTLINE
DIV
blocklevel element
主項目=グループ化
SPAN
inline element
主項目=グループ化
em
強調。構造を記述するelement。
STRONG
より強調。構造を記述するelement。
b
主項目=font weight bold体
cite
出典、参照先をmarkupする。
img
empty element
主項目=画像
< img src="画像ファイルのURL" title="画像のタイトル" alt="任意のalt">
big
主項目=font size 大
small
主項目=font size 小
width
property
主項目=size X座標の範囲を指定する。
height
property
主項目=size Y座標の範囲を指定する。
left
value
主項目=横 alignのvalue。 関連キーワード=左
right
value
主項目=横 alignのvalue。 関連キーワード=右
justify
value
主項目=横 alignのvalue。 関連キーワード=両端
middle
value
主項目=縦 alignのvalue。 関連キーワード=中段
top
value
主項目=縦 alignのvalue。 関連キーワード=上段
bottom
value
主項目=縦 alignのvalue。 関連キーワード=下段
abbr
略語をmarkupするelement。
acronym
頭字語をmarkupするelement。
http-equiv
property
META elementのproperty。
< META http-equiv="Content-Style-Type" content="css">
< META http-equiv="Content-Script-Type" content="javascript">
robots
value(property名)
< META name="robots" content="value">
all
value
< META name="robots" content="all">
LINK
empty element header内element
文書と別の文書を関連付けるelement。
< LINK property="value" href="別の文書のURL">
rel
property
主体=自文書
< LINK rel="value" href="別の文書のURL">
rev
property
主体=他文書
< LINK rev="value" href="別の文書のURL">
prev
value
rel,revのvalue。前の文書を表わすvalue。
< LINK rel="prev" href="前の文書のURL">
< LINK rev="prev" href="前の文書のURL">
next
value
rel,revのvalue。次の文書を表わすvalue。
< LINK rel="prev" href="次の文書のURL">
< LINK rev="prev" href="次の文書のURL">
style
< style type="text/css">~</style>
script
< script type="text/javascript">~</script>
< script type="text/javascript" src="外部スクリプトファイルのURL"></script>
marquee
主項目=テキスト 効果=SCROLL
テーブル
TABLE
property:
summary
width
border
frame
{
value:
void.adove.below.hsides.lhs.rhs.vsides.
box.border
}
rules
{
value:
none.groups.rows.cols.all
bgcolor
caption
表タイトル・説明文
property:
align
{
value:
top.bottom.left.right
}
TR
横行
}
cellspacing
cellpadding
align
{
value:
left.right.center
}
colgroup
縦列のグループ化
property:
span
width
TH
ヘッダセル
TD
データセル
thead
表ヘッダ
tfoot
表フッタ
tbody
表本体
col(empty element)
縦列の属性値共有
property:
span
width
---------------------------------
property
summary
element:TABLE
サマリー情報
---------------------------------
property
rowspan
element:TH,TD
下方向の連結セル数
colspan
element:TH,TD
右方向の連結セル数
abbr
element:TH,TD
セルの内容を短くしたもの
axis
element:TH,TD
セルの分類名
headers
element:TH,TD
関連するヘッダセルのid
scope
element:TH,TD
ヘッダセルの対象となるデータセルの範囲
value:
{
row.col.rowgroup..colgroup
}
CSS BOX
margin-left=15px margin-top=5px
margin-bottom=5px margin-right=15px
padding-left= 3px padding-top=1px
padding-bottom=1px padding-right=3px
border-left-width=5px border-top-width=5px
border-bottom-width=5px border-right-width=5px
border-left-color=#0096ff border-top-color=#0096ff
border-bottom-color=#0096ff
border-right-color=#0096ff
border-top-style=solid
background-color=#0000ff
width=600px
height=300px
color=#ffffff
box
CSS OUTLINE
color
background-color
value:
任意のcolor,transparent
background-image
value:
URL
background-repeat
value:
repeat,repeat-x,repeat-y,no-repeat
background-position
value:
left,right,center,bottom
background-attachment
value:
fixed,scroll
background
value:
background-color,background-image,background-repeat,background-position,background-attachmentのvalue
font-family
value:
serif,sans-serif,cursive,fantasy,monospace
font-size
value:
xx-small,x-small,small,medium,large,x-large,xx-large,smaller,larger
font-weight
value:
100,200,300,400,500,600,700,800,900
bold,lighter,bolder
font-style
value:
oblique
font-variant
value:
small-caps
font-stretch
value:
ultra-condensed,extra-condensed,condensed,semi-condensed,normal,semi-expanded,expanded,extra-expanded,ultra-expanded,narrower,wider
font-size-adjust
value:
第一候補のフォントの「小文字xの高さ÷フォントサイズ」の値
font
value:
font-family,font-size,font-weight,font-variant,font-stretch,font-size-adjust,line-heightのvalue
※line-height property valueについては、valueの前頭に「/」が必要。
caption,icon,manu,message-box,small-caption,status-bar
line-height
value:
normal,数値
text-align
value:
left,right,center,justify
vertical-align
value:
baseline,top,middle,bottom,text-top,text-bottom,super,sub
text-decoration
value:
none,underline,overline,line-through,blink
lrtter-spacing
value:
normal,数値
word-spacing
value:
normal,数値
text-transform
value:
capitalize,lowercase,uppercase
text-indent
value:
数値,%
white-space
value:
pre,nowrap
text-shadow
value:
none,数値,任意のcolor
※ここに書かれている
propertyのvalueについて…not all
<SCRIPT language="JavaScript">
window.status = 'MESSAGE';
< /SCRIPT>
________________________________________
<!--
window.status = 'message'; return true;
//-->
________________________________________
alert('message');
________________________________________
document.bgColor = '#FF0000';
________________________________________
document.write('Last updated: ', document.lastModified);
________________________________________
history.back();
function initbox()
{
if
(!dom&&!ie&&!ns4)
return
crossobj=
(dom)?
document.
getElementById
("dropin").
style :
ie?
document.
all.
dropin :
{
clearInterval
(bouncestart)
}
}
document..
document.
dropin
scroll_top=(ie)?
truebody
()
.scrollTop :
window.page
YOffset
crossobj.
top=
scroll_top
-250+calunits
crossobj.
visibility=
(dom||ie)?
function dismissbox(){
if
(window.bouncestart)
clearInterval
(bouncestart)
body
"visible" :
"show"
dropstart=
setInterval
("dropin()",50)
}
function dropin(){
scroll_top=(ie)?
truebody
()
.scrollTop :
window.page
YOffset
if
(parseInt
crossobj.
visibility=
"hidden"
}
function truebody(){
}
(crossobj.top)
< 100+scroll_top)
crossobj.
top=
parseInt
(crossobj.top)
+40+calunits
else{
clearInterval
(dropstart)
bouncestart=
setInterval
("bouncein()",50)
}
}
return
(document.
compatMode
&&
document.
function bouncein(){
crossobj.
top=
parseInt
(crossobj.top)
-bouncelimit+calunits
if
(bouncelimit<0)
bouncelimit
+=8
bouncelimit=
bouncelimit
*-1
if
(bouncelimit==0)
compatMode!=
"BackCompat")?
document.
document
Element :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data10,データ10,サイト制作">
<meta name=description content=データページの10ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA10</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data11,データ11,サイト制作">
<meta name=description content=データページの11ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA11</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>DATA12</TITLE>
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data15,データ12,myhomepage">
<meta name=description content=データページの12ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data13,データ13,サイト制作">
<meta name=description content=データページの13ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA13</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data14,データ14,サイト制作">
<meta name=description content=データページの14ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA14</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data15,データ15,myhomepage">
<meta name=description content=データページの15ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA15</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data16,データ16,myhomepage">
<meta name=description content=データページの16ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA16</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data17,データ17,myhomepage">
<meta name=description content=データページの17ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA17</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data18,データ18,myhomepage">
<meta name=description content=データページの18ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA18</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data19,データ19,myhomepage">
<meta name=description content=データページの19ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA19</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>DATA20</TITLE>
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data15,データ20,myhomepage">
<meta name=description content=データページの20ページ目です。経済的な内容を志向したページです。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<LINK rel="stylesheet" href="data20.files/data20.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>DATA21</TITLE>
<META name="keywords" content=" まいほーむぺーじ,ホームページ制作,data21,データ21,myhomepage">
<META name="description" content=データページの21ページ目です。>
<meta name="author" content="髙木紀久">
<META name="ROBOTS" content=ALL>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>DATA22</TITLE>
<META name="keywords" content=" まいほーむぺーじ,ホームページ制作,data22,データ22,myhomepage">
<META name="description" content="FXに関するFree Reportの紹介です。内容は南アフリカの通貨ランドの希望者FXによる予備知識最小限等です。">
<meta name="author" content="髙木紀久">
<META name="ROBOTS" content=ALL>
<LINK rel="stylesheet" href="data22.files/data22.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>DATA23</TITLE>
<META name="keywords" content=" まいほーむぺーじ,ホームページ制作,data23,データ23,myhomepage">
<META name="description" content="FXのフリーレポートの紹介です。サブプライムローンの問題等省察。">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content=ALL>
<LINK rel="stylesheet" href="data23.files/data23.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>DATA24</TITLE>
<META name="keywords" content=" まいほーむぺーじ,ホームページ制作,data,データ,myhomepage">
<META name="description" content="FXのフリーレポートの紹介です。「【FX経済指標説明】「日本国内のバージョン」20ページ」等です。">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content=ALL>
<LINK rel="stylesheet" href="data24.files/data24.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>DATA25</TITLE>
<META name="keywords" content=" まいほーむぺーじ,ホームページ制作,data25,データ25,myhomepage">
<META name="description" content="FXに関するページです。内容はランチェスターの法則等です。ランチェスターの法則は軍事技術の理論ですが、FXの世界にも応用が可能です。是非、ランチェスターの法則を学習し、理解し、実践してFX投資で生計を立てていってください。">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content=ALL>
<LINK rel="stylesheet" href="data25.files/data25.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>DATA26</TITLE>
<META name="keywords" content=" まいほーむぺーじ,ホームページ制作,data26,データ26,myhomepage">
<META name="description" content="DFF>アンケート募金>CSR>アンケート>回答内容>テキストエリア内 DFFアンケート募金企業CSR活動アンケートの設問への解答内容で、テキストエリア内のもののみを抽出したものです。">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content=ALL>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<META name="keywords" content="2014年サッカーワールドカップ開催,2014年ソチ冬季オリンピック関連,カースト,世界第一位">
<META name="description" content="ブリックス。その産業、経済、事業、開催イベント、特色、課題、特記事項などの概観。">
<META name="ROBOTS" content="ALL">
<META name="author" content="高木紀久">
<TITLE>DATA27</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<META name="keywords" content="人件費,OPEC,2010年サッカーワールドカップ,IMF,ペソ">
<META name="description" content="ヴィスタ。その産業、経済、事業、開催イベント、特色、課題、特記事項などの概観。">
<META name="author" content="高木紀久">
<META name="ROBOTS" content="ALL">
<TITLE>DATA28</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<META name="keywords" content="マン社,AHL,グレンウッド,投資,運用,サブプライム">
<META name="description" content="海外大手ヘッジファンドによる元本保証型金融商品の運用について、どのようにして元本を保証しながら資金が運用されるのか、ファンドマネジャーや“失敗する可能性のあるもの”などの、諸要素をまじえながら、具体的な例とともにわかりやすく解説しています。">
<META name="ROBOTS" content="ALL">
<META name="author" content="高木紀久">
<TITLE>DATA29</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<META name="keywords" content="投資,金融商品,コモディティ,オプション,証券会社,銘柄,レバレッジ">
<META name="description" content="ワラント投資のコール型、プット型、ニアピン、トラッカーの四つの形態などについて解説しています。ゴールドマンサックス、クリック証券についての記述もあります。">
<META name="ROBOTS" content="ALL">
<META name="author=" content="高木紀久">
<TITLE>DATA30</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>CSS用語集補足(BOX)</TITLE>
<META name="keywords" content="CSS,まいほーむぺーじ,ホームページ制作,スタイルシート,補足,BOX,用語集">
<META name="description" content="CSS用語集の補足。boxに関する補追。">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="css-hosoku.css" type="text/css"></HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>CSS OUTLINE</TITLE>
<META name="keywords" content="CSS,まいほーむぺーじ,ホームページ制作,outline,アウトライン,スタイルシート">
<META name="description" content="CSS関連単語用語の概説です。CSS-OUTLINE TOP:color">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="css-outline.css" type="text/css"></HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>CSS用語集</TITLE>
<META name="keywords" content="CSS,css,まいほーむぺーじ,スタイルシート,カスケーディングスタイルシート,ホームページ制作">
<META name="description" content="CSS関連単語集">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="css-yougosyuu.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>CSS</TITLE>
<META name="keywords" content="CSS,まいほーむぺーじ,ホームページ制作,スタイルシート,シーエスエス,スタートページ">
<META name="description" content="CSS関連ページのスタートページです。">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta name=ProgId content=Word.Document>
<META name="Generator" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<meta name=Originator content="Microsoft Word 11">
<link rel=File-List href="data.files/filelist.xml">
<link rel=Edit-Time-Data href="data.files/editdata.mso">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<title>DATA</title>
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>高木 紀久</o:Author>
<o:Template>Normal</o:Template>
<o:LastAuthor>高木 紀久</o:LastAuthor>
<o:Revision>33</o:Revision>
<o:TotalTime>51</o:TotalTime>
<o:Created>2008-04-01T15:56:00Z</o:Created>
<o:LastSaved>2008-05-18T15:58:00Z</o:LastSaved>
<o:Pages>1</o:Pages>
<o:Words>2254</o:Words>
<o:Characters>12852</o:Characters>
<o:Lines>107</o:Lines>
<o:Paragraphs>30</o:Paragraphs>
<o:CharactersWithSpaces>15076</o:CharactersWithSpaces>
<o:Version>11.9999</o:Version>
</o:DocumentProperties>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:WordDocument>
<w:SpellingState>Clean</w:SpellingState>
<w:PunctuationKerning/>
<w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery>
<w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:Compatibility>
<w:SpaceForUL/>
<w:BalanceSingleByteDoubleByteWidth/>
<w:DoNotLeaveBackslashAlone/>
<w:ULTrailSpace/>
<w:DoNotExpandShiftReturn/>
<w:AdjustLineHeightInTable/>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
<w:DontGrowAutofit/>
<w:UseFELayout/>
</w:Compatibility>
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
</w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles DefLockedState="false" LatentStyleCount="156">
</w:LatentStyles>
</xml><![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:"MS 明朝";
panose-1:2 2 6 9 4 2 5 8 3 4;
mso-font-alt:"MS Mincho";
mso-font-charset:128;
mso-generic-font-family:roman;
mso-font-pitch:fixed;
mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
@font-face
{font-family:"MS ゴシック";
panose-1:2 11 6 9 7 2 5 8 2 4;
mso-font-alt:"MS Gothic";
mso-font-charset:128;
mso-generic-font-family:modern;
mso-font-pitch:fixed;
mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
@font-face
{font-family:Century;
panose-1:2 4 6 4 5 5 5 2 3 4;
mso-font-charset:0;
mso-generic-font-family:roman;
mso-font-pitch:variable;
mso-font-signature:647 0 0 0 159 0;}
@font-face
{font-family:"MS Pゴシック";
panose-1:2 11 6 0 7 2 5 8 2 4;
mso-font-charset:128;
mso-generic-font-family:modern;
mso-font-pitch:variable;
mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
@font-face
{font-family:"\@MS ゴシック";
panose-1:2 11 6 9 7 2 5 8 2 4;
mso-font-charset:128;
mso-generic-font-family:modern;
mso-font-pitch:fixed;
mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
@font-face
{font-family:"\@MS 明朝";
panose-1:2 2 6 9 4 2 5 8 3 4;
mso-font-charset:128;
mso-generic-font-family:roman;
mso-font-pitch:fixed;
mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
@font-face
{font-family:Verdana;
panose-1:2 11 6 4 3 5 4 4 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:536871559 0 0 0 415 0;}
@font-face
{font-family:"\@MS Pゴシック";
panose-1:2 11 6 0 7 2 5 8 2 4;
mso-font-charset:128;
mso-generic-font-family:modern;
mso-font-pitch:variable;
mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0mm;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
mso-pagination:none;
font-size:10.5pt;
mso-bidi-font-size:12.0pt;
font-family:Century;
mso-fareast-font-family:"MS 明朝";
mso-bidi-font-family:"Times New Roman";
mso-font-kerning:1.0pt;}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;
text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
{color:purple;
text-decoration:underline;
text-underline:single;}
span.SpellE
{mso-style-name:"";
mso-spl-e:yes;}
/* Page Definitions */
@page
{mso-page-border-surround-header:no;
mso-page-border-surround-footer:no;}
@page Section1
{size:612.0pt 792.0pt;
margin:99.25pt 30.0mm 30.0mm 30.0mm;
mso-header-margin:36.0pt;
mso-footer-margin:36.0pt;
mso-paper-source:0;}
div.Section1
{page:Section1;}
-->
</style>
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:標準の表;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0mm 5.4pt 0mm 5.4pt;
mso-para-margin:0mm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;}
</style>
<![endif]-->
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data,データ,サイト制作">
<meta name=description content=DocumentActiveTextAdvance>
<meta name=ROBOTS content=ALL>
<!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="5122">
<v:textbox inset="5.85pt,.7pt,5.85pt,.7pt"/>
</o:shapedefaults></xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
</head>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta name=ProgId content=Word.Document>
<META name="Generator" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<meta name=Originator content="Microsoft Word 11">
<link rel=File-List href="data2.files/filelist.xml">
<title>DATA2_The content schedules the one that concerns the homepage of making
by oneself</title>
<link rel=Stylesheet type="text/css" media=all href="data2.files/data2.css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data2,データ2,サイト制作">
<meta name=description content="DATA2_DocumentActiveTextAdvance">
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<META http-equiv="Content-Style-Type" content="text/css">
</head>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta name=ProgId content=Word.Document>
<META name="Generator" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<meta name=Originator content="Microsoft Word 11">
<link rel=File-List href="data3.files/filelist.xml">
<title>DATA3</title>
<link rel=Stylesheet type="text/css" media=all href="data3.files/data3.css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data3,データ3,サイト制作">
<meta name=description content="DATAページの3ページ目です。">
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<META http-equiv="Content-Style-Type" content="text/css">
</head>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta name=ProgId content=Word.Document>
<META name="Generator" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<meta name=Originator content="Microsoft Word 11">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data4,データ4,サイト制作">
<meta name=description content="DATAページの4ページ目です。">
<META name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<link rel=File-List href="data4.files/filelist.xml">
<title>DATA4</title>
<META http-equiv="Content-Style-Type" content="text/css">
</head>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta name=ProgId content=Word.Document>
<META name="Generator" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<meta name=Originator content="Microsoft Word 11">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data5,データ5,サイト制作">
<meta name=description content=データページの5ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<LINK rel="stylesheet" href="data5.files/data5.css" type="text/css">
<link rel=File-List href="data5.files/filelist.xml">
<title>DATA5</title>
<META http-equiv="Content-Style-Type" content="text/css">
</head>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data6,データ6,サイト制作">
<meta name=description content=DATAページの6ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA6</TITLE>
<LINK rel="stylesheet" href="data6.files/data6.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data7,データ7,サイト制作">
<meta name=description content=データページの7ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA7</TITLE>
<LINK rel="stylesheet" href="data7.files/data7.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data8,データ8,サイト制作">
<meta name=description content="DATAページの8ページ目です。">
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<TITLE>DATA8</TITLE>
<LINK rel="stylesheet" href="data8.files/data8.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta name=keywords content="まいほーむぺーじ,ホームページ制作,data9,データ9,サイト制作">
<meta name=description content=データページの9ページ目です。>
<meta name="author" content="髙木紀久">
<meta name=ROBOTS content=ALL>
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>DATA9</TITLE>
<LINK rel="stylesheet" href="data9.files/data9.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta name="Microsoft Theme 2.00" content="Network 011">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta name=ProgId content=Word.Document>
<META name="Generator" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<meta name=Originator content="Microsoft Word 11">
<link rel=File-List href="data-index.files/filelist.xml">
<title>DATA-INDEX</title>
<META http-equiv="Content-Style-Type" content="text/css">
<META name="keywords" content="まいほーむぺーじ,ホームページ制作,data-index,データ,サイト制作">
<META name="description" content="DATA-INDEX,DATAページ群のスタートページです。">
<META name="ROBOTS" content="ALL">
</head>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>フォーム</TITLE>
<META name="keywords" content="フォーム,ホームページ制作,まいほーむぺーじ,form,html">
<META name="description" content="フォームのelement,property,value">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="html-form.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>HTML用語集概説</TITLE>
<META name="keywords" content="HTML,まいほーむぺーじ,ホームページ制作,用語集,概説,HTML概説">
<META name="description" content="HTML関連単語-用語集(HTML用語集)の概説です。HTML-BASIC-GLOSSARY-OUTLINE">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="html-gaisetsu.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>HTML OUTLINE</TITLE>
<META name="keywords" content="HTML,まいほーむぺーじ,ホームページ制作,outline,概説,アウトライン">
<META name="description" content="HTML関連単語用語の概説です。HTML-OUTLINE TOP:DIV">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="html-outline.css" type="text/css"></HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<META name="keywords" content="HTML,html,HTML単語集,HTML用語集,まいほーむぺーじ,SRC">
<META name="description" content="HTML関連用語集。HTML用語集。HTML単語集。BASIC。TOP:SRC。">
<meta name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<TITLE>HTML用語集</TITLE>
<LINK rel="stylesheet" href="html-yougosyuu.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>テーブル</TITLE>
<META name="keywords" content="テーブル,ホームページ制作,まいほーむぺーじ,table,表">
<META name="description" content="テーブルのelement,property,value">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="table.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>HTML</TITLE>
<META name="keywords" content="HTML,まいほーむぺーじ,ホームページ制作,html,エイチティーエムエル,スタートページ">
<META name="description" content="HTML関連ページのスタートページです。">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>JavaScript</TITLE>
<META name="keywords" content="JAVAScript,まいほーむぺーじ,スクリプト,JAVAスクリプト">
<META name="description" content="JAVAScript_SourceCode">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="js.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>リンク集</TITLE>
<META name="keywords" content="リンク集,ホームページ制作,まいほーむぺーじ,自動リンク,相互リンク,アーカイブ">
<META name="description" content="まいほーむぺーじの自動リンク、相互リンク等、リンク集のアーカイブです。">
<meta name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="links.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>LOG1</TITLE>
<meta name="author" content="髙木紀久">
<META name="ROBOTS" CONTENT="ALL">
<META name="description" content="ホームページの制作logの第一ページです。">
<META name="keywords" content="THE LOG,ホームページ制作,まいほーむぺーじ,log,log1,ログ1">
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<LINK rel="stylesheet" href="hpb9tm02_2.css" type="text/css" id="hpb9tm02_2">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>LOG2</TITLE>
<meta name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<META name="description" content="ホームページの制作logの2ページ目です。">
<META name="keywords" content="THE LOG,ホームページ制作,まいほーむぺーじ,log,log2,ログ2">
<LINK rel="stylesheet" href="hpb9tm02_1.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>LOG3</TITLE>
<META name="keywords" content="THE LOG,ホームページ制作,まいほーむぺーじ,log,log3,ログ3">
<META name="description" content="ホームページの制作logの3ページ目です。">
<meta name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="09.css" type="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>LOG4</TITLE>
<META name="keywords" content="log4,ログ4,まいほーむぺーじ,マイホームページ,ホームページ制作,サイト制作">
<META name="description" content="LOGgroupのpage4です。main contentはhomepage design log’s archivesの1st archiveです。">
<META name="ROBOTS" content="ALL">
<META name="author" content="髙木紀久">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<META name="keywords" content="log5,ログ5,まいほーむぺーじ,マイホームページ,ホームページ制作,サイト制作">
<META name="description" content="LOGgroupのpage4です。main contentはhomepage design log’s archivesの2nd archiveです。">
<META name="ROBOTS" content="ALL">
<META name="author" content="髙木紀久">
<TITLE>LOG5</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<META name="keywords" content="log6,ログ6,まいほーむぺーじ,マイホームページ,ホームページ制作,サイト制作">
<META name="description" content="LOGgroupのpage5です。main contentはhomepage design log’s archivesの2nd archiveです。">
<META name="ROBOTS" content="ALL">
<META name="author" content="髙木紀久">
<TITLE>LOG6</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>LOG7</TITLE>
<META name="keywords" content="log7,ログ7,まいほーむぺーじ,マイホームページ,ホームページ制作,サイト制作">
<META name="description" content="LOGgroupのpage6です。main contentはhomepage design log’s archivesの2nd archiveです。">
<META name="ROBOTS" content="ALL">
<META name="author" content="髙木紀久">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>LOG8</TITLE>
<META name="keywords" content="log8,ログ8,まいほーむぺーじ,マイホームページ,ホームページ制作,サイト制作">
<META name="description" content="自作のサイトの制作のlogです。ページ番号7。INDEXページ。アクセスカウンターTYPE。サイト構成。">
<META name="ROBOTS" content="ALL">
<META name="author" content="髙木紀久">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>THE LOG</TITLE>
<META name="author" content="髙木紀久">
<META NAME="ROBOTS" CONTENT="ALL">
<META name="description" content="ホームページの制作のログの玄関ページです。">
<META name="keywords" content="THE LOG,まいほーむぺーじ,log,ログ,ホームページ制作">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Style-Type" content="text/css">
<!--Infoseek Analyzer start-->
<SCRIPT src="http://js5.infoseek.co.jp/bin/10/20304.js"></SCRIPT><!--Infoseek Analyzer end-->
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>SITE_INDEX</TITLE>
<META name="author" content="髙木紀久">
<META NAME="ROBOTS" CONTENT="ALL">
<META name="description" content="サイトインデックスです。">
<META name="keywords" content="サイトインデックス,INDEX,ホームページ制作,リンク,WEB制作,まいほーむぺーじ">
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>リンク集</TITLE>
<META name="keywords" content="リンク集,LINK,まいほーむぺーじ,リンク,相互リンク集">
<META name="description" content="リンク集">
<meta name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<LINK rel="stylesheet" href="hpb9tm02_5.css" type="text/css" id="hpb9tm02_5">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<META name="author" content="髙木紀久">
<META name="ROBOTS" content="ALL">
<META name="description" content="初の自作ホームページ第二弾です。WEB制作に関するアンケートのページです。">
<META name="keywords" content="次ぺーじ,WEB制作,アンケート,質問と回答,制作">
<TITLE>WEBアンケート</TITLE>
<LINK rel="stylesheet" href="hpb9tm01_3.css" type="text/css" id="hpb9tm01_3">
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 12.0.5.0 for Windows">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>送信完了</TITLE>
<META NAME="ROBOTS" CONTENT="ALL">
<META name="author" content="髙木紀久">
<META name="description" content="送信完了">
<META name="keywords" content="送信完了,送信,WEBアンケート,送信フォーム,まいほーむぺーじ">
<LINK rel="stylesheet" href="hpb9tm01_3.css" type="text/css" id="hpb9tm01_3">
</HEAD>
<BODY>
内容は自作のホームページに関するものを予定しています。
ホームページ制作
テーマ:ホームページ
ホームページ サイト完成。
ホームページ制作
テーマ:ホームページ
リモートサイト アップロード
ホームページ制作
テーマ:ホームページ
サイト閲覧。
ホームページ制作
テーマ:ホームページ
サイト URL _http://homepage2.nifty.com/gateway/
―――――――――――――――――――――――――――――――
―――――――――――――――――――――――――――――――
―――――――――――――――――――――――――――――――
ホームページ URL
トップページ
http://homepage2.nifty.com/gateway/
送信フォームページ
http://homepage2.nifty.com/gateway/soushin/form.htm
三番目のページ(ページ番号3)
http://homepage2.nifty.com/gateway/02/02.htm
ホームページ制作
テーマ:ホームページ
トップページ URL:http://homepage2.nifty.com/gateway/
スクロールボタン:なし
他のページ:なし
ホームページ制作
テーマ:ホームページ
ヘッダー情報 トップページ
<TITLE>:タイトル
<META>(keywords):content×3
<META>(description):content×1
ホームページ制作
テーマ:ホームページ
ヘッダー情報 トップページ
<TITLE>:タイトル
<META>(keywords):content×3
<META>(description):content×1
<META>(ROBOTS):content=ALL
ホームページ制作
テーマ:ホームページ
コメントを書き込む。
コメントはフッター領域のHTMLソースに挿入された。
編集画面には感嘆符が表示される。
※現在このコメントは削除してあり、存在しません。
ホームページ制作
テーマ:ホームページ
送信フォームページ完成 URL:http://homepage2.nifty.com/gateway/soushin/form.htm
ホームページ制作
テーマ:ホームページ
送信フォームページ URL:http://homepage2.nifty.com/gateway/soushin/form.htm
スクロールボタン:なし
他のページ:トップページ
トップページ URL:http://homepage2.nifty.com/gateway/
スクロールボタン:あり
他のページ:送信フォームページ
ホームページ制作
テーマ:ホームページ
ヘッダー情報 送信フォームページ
<TITLE>:タイトル
<META>(keywords):content×5
<META>(description):content×2
<META>(ROBOTS):content="ALL"
ホームページ制作
テーマ:ホームページ
送信フォームページ
アクセスカウンター設置
トップページ URL:http://homepage2.nifty.com/gateway/
スクロールボタン:あり
他のページ:送信フォームページ
アクセスカウンター:あり
2006年11月9日 22:55:18
ホームページ制作
テーマ:ホームページ
三番目のページ(ページ番号3)
URL:http://homepage2.nifty.com/gateway/bbs/keijiban.htm
スクロールボタン:なし
他のページ:トップページ、送信フォームページ
トップページ URL:http://homepage2.nifty.com/gateway/
スクロールボタン:あり
他のページ:送信フォームページ、三番目のページ(ページ番号3)
アクセスカウンター:あり
ホームページ制作
テーマ:ホームページ
ヘッダー情報 三番目のページ(ページ番号3)
<TITLE>:タイトル
<META>(keywords):content×5
<META>(description):content×2
<META>(ROBOTS):content=ALL
ホームページ制作
テーマ:ホームページ
三番目のページ(ページ番号3)
アクセスカウンター設置
ホームページ制作
テーマ:ホームページ
掲示板 設置
ホームページ制作
テーマ:ホームページ
掲示板 URL: http://8909.teacup.com/editor_web/bbs
ホームページ制作
テーマ:ホームページ
三番目のページ(ページ番号3)
URL:http://homepage2.nifty.com/gateway/02/02.htm <BR>
スクロールボタン:なし
他のページ:トップページ、送信フォームページ
リンク:掲示板
ホームページ制作
テーマ:ホームページ
フレームページ
ページ数:2
分割方向:列方向
フレーム:メインフレーム,サブフレーム
メインフレーム:タイトルページ
サブフレーム:ナビゲーションボックス
フレームページ:トップページ
URL:http://homepage2.nifty.com/gateway/html
テーマ:ホームページ
サイト構成
トップページ リンク:送信フォームページ,三番目のページ(ページ番号3),ショップページ
送信フォームページ リンク:トップページ直リンク
テーマ:ホームページ
送信完了ページ
URL:http://homepage2.nifty.com/gateway/soushin/newpage1.htm
三番目のページ(ページ番号3) リンク:トップページ直リンク
ショップページ リンク:トップページ直リンク
テーマ:ホームページ
送信完了ページ アップロード
テーマ:ホームページ
送信完了ページ
本体情報、URL、リンク
URL:http://homepage2.nifty.com/gateway/soushin/newpage1.htm
サイト内リンクページ:送信フォームページ
CGI(一部):アクセスカウンター
テーマ:ホームページ
アクセスランキングリンク
http://web-link.jpn.org/yomi-search/rank.cgi?mode=r_link&id=1688
http://victory-club.net/search/rank.cgi?mode=r_link&id=3992
http://smile8.net/search/rank.cgi?mode=r_link&id=17063
http://bahati.info/Root/rank.cgi?mode=r_link&id=6329
http://www.ac-web.com/ys/rank.cgi?mode=r_link&id=26733
http://www.sendenup.com/ys4/rank.cgi?mode=r_link&id=28619
http://www.linkoflink.com/cgi-bin/perl/linker/yomi-search/yomi-search_1/rank.cgi?mode=r_link&id=44013
http://at-system.main.jp/ys4/rank.cgi?mode=r_link&id=8194
http://www.imagine-jap.com/search/rank.cgi?mode=r_link&id=8902
http://www4.airnet.ne.jp/toroa/cgi-bin/yomi/ys4/rank.cgi?mode=r_link&id=28549
http://hayakuro.kiy.jp/cgi/yomi-search/rank.cgi?mode=r_link&id=16293
http://hayakuro.kiy.jp/image/ranking.gif
http://www.access-counter.com/search/rank.cgi?mode=r_link&id=20633
http://www.inntos.com/search/rank.cgi?mode=r_link&id=35996
http://www.deainoba.com/search/rank.cgi?mode=r_link&id=41960
http://www.510m.com/rank.cgi?mode=r_link&id=13340
http://people.mite.ne.jp/cgi/search/rank.cgi?mode=r_link&id=15064
End Log
This Log:One part
Archive1
ホームページ制作
テーマ:ホームページ
ホームページ サイト完成。
ホームページ制作
テーマ:ホームページ
リモートサイト アップロード
ホームページ制作
テーマ:ホームページ
サイト閲覧。
ホームページ制作
テーマ:ホームページ
サイト URL _http://homepage2.nifty.com/gateway/
―――――――――――――――――――――――――――――――
―――――――――――――――――――――――――――――――
―――――――――――――――――――――――――――――――
ホームページ URL
トップページ
http://homepage2.nifty.com/gateway/
送信フォームページ
http://homepage2.nifty.com/gateway/form/soushin.htm
三番目のページ(ページ番号3)
http://homepage2.nifty.com/gateway/02/02.htm
ホームページ制作
テーマ:ホームページ
トップページ URL:http://homepage2.nifty.com/gateway/
スクロールボタン:なし
他のページ:なし
ホームページ制作
テーマ:ホームページ
ヘッダー情報 トップページ
<TITLE>:タイトル
<META>(keywords):content×3
<META>(description):content×1
ホームページ制作
テーマ:ホームページ
ヘッダー情報 トップページ
<TITLE>:タイトル
<META>(keywords):content×3
<META>(description):content×1
<META>(ROBOTS):content=ALL
ホームページ制作
テーマ:ホームページ
コメントを書き込む。
コメントはフッター領域のHTMLソースに挿入された。
編集画面には感嘆符が表示される。
※現在このコメントは削除してあり、存在しません。
ホームページ制作
テーマ:ホームページ
送信フォームページ完成 URL:http://homepage2.nifty.com/gateway/soushin/form.htm
ホームページ制作
テーマ:ホームページ
送信フォームページ URL:http://homepage2.nifty.com/gateway/form/soushin.htm
スクロールボタン:なし
他のページ:トップページ
トップページ URL:http://homepage2.nifty.com/gateway/
スクロールボタン:あり
他のページ:送信フォームページ
ホームページ制作
テーマ:ホームページ
ヘッダー情報 送信フォームページ
<TITLE>:タイトル
<META>(keywords):content×5
<META>(description):content×2
< META>(ROBOTS):content="ALL"
ホームページ制作
テーマ:ホームページ
送信フォームページ
アクセスカウンター設置
トップページ URL:http://homepage2.nifty.com/gateway/
スクロールボタン:あり
他のページ:送信フォームページ
アクセスカウンター:あり
ホームページ制作<BR>
テーマ:ホームページ
三番目のページ(ページ番号3)
URL:http://homepage2.nifty.com/gateway/bbs/keijiban.htm
スクロールボタン:なし
他のページ:トップページ、送信フォームページ
トップページ URL:http://homepage2.nifty.com/gateway/
スクロールボタン:あり
他のページ:送信フォームページ、三番目のページ(ページ番号3)
アクセスカウンター:あり
ホームページ制作
テーマ:ホームページ
ヘッダー情報 三番目のページ(ページ番号3)
<TITLE>:タイトル
<META>(keywords):content×5
<META>(description):content×2
<META>(ROBOTS):content=ALL
ホームページ制作
テーマ:ホームページ
三番目のページ(ページ番号3)
アクセスカウンター設置
ホームページ制作
テーマ:ホームページ
掲示板 設置
ホームページ制作
テーマ:ホームページ
掲示板 URL: http://8909.teacup.com/editor_web/bbs
ホームページ制作
テーマ:ホームページ
三番目のページ(ページ番号3)
URL:http://homepage2.nifty.com/gateway/02/02.htm <BR>
スクロールボタン:なし
他のページ:トップページ、送信フォームページ
リンク:掲示板
ホームページ制作
テーマ:ホームページ
フレームページ
ページ数:2
分割方向:列方向
フレーム:メインフレーム,サブフレーム
メインフレーム:タイトルページ
サブフレーム:ナビゲーションボックス
フレームページ:トップページ
URL:http://homepage2.nifty.com/gateway/html
テーマ:ホームページ
サイト構成
トップページ リンク:送信フォームページ,三番目のページ(ページ番号3),ショップページ
送信フォームページ リンク:トップページ直リンク
テーマ:ホームページ
送信完了ページ
URL:http://homepage2.nifty.com/gateway/soushin/newpage1.htm
三番目のページ(ページ番号3) リンク:トップページ直リンク
ショップページ リンク:トップページ直リンク
テーマ:ホームページ
送信完了ページ アップロード
テーマ:ホームページ
送信完了ページ
本体情報、URL、リンク
URL:http://homepage2.nifty.com/gateway/soushin/newpage1.htm
サイト内リンクページ:送信フォームページ
CGI(一部):アクセスカウンター
テーマ:ホームページ
アクセスランキングリンク
http://web-link.jpn.org/yomi-search/rank.cgi?mode=r_link&id=1688
http://victory-club.net/search/rank.cgi?mode=r_link&id=3992
http://smile8.net/search/rank.cgi?mode=r_link&id=17063
http://bahati.info/Root/rank.cgi?mode=r_link&id=6329
http://www.ac-web.com/ys/rank.cgi?mode=r_link&id=26733
http://www.sendenup.com/ys4/rank.cgi?mode=r_link&id=28619
http://www.linkoflink.com/cgi-bin/perl/linker/yomi-search/yomi-search_1/rank.cgi?mode=r_link&id=44013
http://at-system.main.jp/ys4/rank.cgi?mode=r_link&id=8194
http://www.imagine-jap.com/search/rank.cgi?mode=r_link&id=8902
http://www4.airnet.ne.jp/toroa/cgi-bin/yomi/ys4/rank.cgi?mode=r_link&id=28549
http://hayakuro.kiy.jp/cgi/yomi-search/rank.cgi?mode=r_link&id=16293
http://hayakuro.kiy.jp/image/ranking.gif
http://www.access-counter.com/search/rank.cgi?mode=r_link&id=20633
http://www.inntos.com/search/rank.cgi?mode=r_link&id=35996
http://www.deainoba.com/search/rank.cgi?mode=r_link&id=41960
http://www.510m.com/rank.cgi?mode=r_link&id=13340
http://people.mite.ne.jp/cgi/search/rank.cgi?mode=r_link&id=15064
ホームページ制作
テーマ:ホームページ
ヘッダー情報 送信完了ページ
<TITLE>:タイトル
<META>(keywords):content×5
<META>(description):content×1
<META>(ROBOTS):content="ALL"
ホームページ制作
テーマ:ホームページ
送信完了ページ
おもなタグ:H1タグ
―――――――――――――――――――――――――――――――――――
―――――――――――――――――――――――――――――――――――
―――――――――――――――――――――――――――――――――――
ホームページ URL
トップページ
http://homepage2.nifty.com/gateway/
送信フォームページ
http://homepage2.nifty.com/gateway/soushin/form.htm
三番目のページ(ページ番号3)
http://homepage2.nifty.com/gateway/02/02.htm
ショップページ
http://homepage2.nifty.com/gateway/comzmini/comzmini.html
ホームページ制作
テーマ:ホームページ
サイト構成
トップページ リンク:送信フォームページ,三番目のページ(ページ番号3),ショップページ
送信フォームページ リンク:トップページ直リンク
送信完了ページ直リンク
三番目のページ(ページ番号3) リンク:トップページ直リンク
ショップページ リンク:トップページ直リンク
送信完了ページ リンク:送信フォームページ直リンク
※リンク ・・・ ディレクトリ
ホームページ制作
テーマ:ホームページ
アクセスランキング リンク 2
http://web-link.jpn.org/yomi-search/rank.cgi?mode=r_link&id=1688
http://victory-club.net/search/rank.cgi?mode=r_link&id=3992
http://smile8.net/search/rank.cgi?mode=r_link&id=17063
http://bahati.info/Root/rank.cgi?mode=r_link&id=6329
http://www.ac-web.com/ys/rank.cgi?mode=r_link&id=26733
http://www.sendenup.com/ys4/rank.cgi?mode=r_link&id=28619
http://www.linkoflink.com/cgi-bin/perl/linker/yomi-search/yomi-search_1/rank.cgi?mode=r_link&id=44013
http://at-system.main.jp/ys4/rank.cgi?mode=r_link&id=8194
http://www.imagine-jap.com/search/rank.cgi?mode=r_link&id=8902
http://www4.airnet.ne.jp/toroa/cgi-bin/yomi/ys4/rank.cgi?mode=r_link&id=28549
< a href="http://hayakuro.kiy.jp/cgi/yomi-search/rank.cgi?mode=r_link&id=16293"><IMG src="http://hayakuro.kiy.jp/image/ranking.gif " width="88" height="31" border="0"></a>
http://www.access-counter.com/search/rank.cgi?mode=r_link&id=20633
http://www.inntos.com/search/rank.cgi?mode=r_link&id=35996
http://www.deainoba.com/search/rank.cgi?mode=r_link&id=41960
http://www.510m.com/rank.cgi?mode=r_link&id=13340
http://people.mite.ne.jp/cgi/search/rank.cgi?mode=r_link&id=15064
http://piero.moon.ne.jp/search/rank.cgi?mode=r_link&id=17857
http://ekozukai.com/cgi/yomi-search/rank.cgi?mode=r_link&id=29874
ホームページ制作
テーマ:ホームページ
ページ番号6 完成
ホームページ制作
テーマ:ホームページ
ページ番号6 アップロード
ホームページ制作
テーマ:ホームページ
ページ番号6 閲覧
ホームページ制作
テーマ:ホームページ
ページ番号6 URL
http://homepage2.nifty.com/gateway/03/03.htm
ホームページ制作
テーマ:ホームページ
ページ番号6 ページ情報
URL:http://homepage2.nifty.com/gateway/03/03.htm
アクセスカウンター数:1
ホームページ制作
テーマ:ホームページ
ヘッダー情報 ページ番号6
<TITLE>:タイトル
<META>(keywords):content×6
<META>(description):content×1
<META>(ROBOTS):content="ALL"
ホームページ制作
テーマ:ホームページ
ページ番号7 作成
ホームページ制作
テーマ:ホームページ
ページ番号7 アップロード
ホームページ制作
テーマ:ホームページ
ページ番号7 閲覧
ホームページ制作
テーマ:ホームページ
ページ番号7 URL:http://homepage2.nifty.com/gateway/04/04.htm
ホームページ制作
テーマ:ホームページ
ページ番号7 ページ情報
URL:http://homepage2.nifty.com/gateway/04/04.htm
アクセスカウンターTYPE:累計
ホームページ制作
テーマ:ホームページ
サイト構成
トップページ リンク:送信フォームページ,三番目のページ(ページ番号3),ショップページ
送信フォームページ リンク:トップページ,送信完了ページ
三番目のページ(ページ番号3) リンク:トップページ
ショップページ リンク:トップページ
送信完了ページ リンク:送信フォームページ
ページ番号6 リンク:トップページ
ページ番号7 リンク:トップページ
※リンク・・・DirectLink
※リンク・・・Directory
ホームページ制作
テーマ:ホームページ
サイト構成
トップページ リンク:送信フォームページ,三番目のページ(ページ番号3),ショップページ
送信フォームページ リンク:トップページ,送信完了ページ
三番目のページ(ページ番号3) リンク:トップページ
ショップページ リンク:トップページ
送信完了ページ リンク:送信フォームページ
ページ番号6 リンク:トップページ
ページ番号7 リンク:トップページ
※リンク・・・DirectLink
※ リンク・・・Directory
ホームページ制作
テーマ:ホームページ
自動リンク
トップページURL:http://homepage2.nifty.com/gateway/
総登録数:314 最終更新日:2006/06/22 09:09:15
ホームページ制作
テーマ:ホームページ
自動リンク
トップページURL:http://homepage2.nifty.com/gateway/
総登録数:314 最終更新日:2006/06/22 09:09:15
ホームページ制作
テーマ:ホームページ
INDEXページ 作成
ホームページ制作
テーマ:ホームページ
INDEXページ アップロード
ホームページ制作
テーマ:ホームページ
ページ番号7 作成
ホームページ制作
テーマ:ホームページ
ページ番号7 アップロード
ホームページ制作
テーマ:ホームページ
ページ番号7 閲覧
ホームページ制作
テーマ:ホームページ
ページ番号7 URL:http://homepage2.nifty.com/gateway/04/04.htm
ホームページ制作
テーマ:ホームページ
ページ番号7 ページ情報
URL:http://homepage2.nifty.com/gateway/04/04.htm
アクセスカウンターTYPE:累計
ホームページ制作
テーマ:ホームページ
サイト構成
トップページ リンク:送信フォームページ,三番目のページ(ページ番号3),ショップページ
送信フォームページ リンク:トップページ,送信完了ページ
三番目のページ(ページ番号3) リンク:トップページ
ショップページ リンク:トップページ
送信完了ページ リンク:送信フォームページ
ページ番号6 リンク:トップページ
ページ番号7 リンク:トップページ
※リンク・・・DirectLink
※リンク・・・Directory
ホームページ制作
テーマ:ホームページ
サイト構成
トップページ リンク:送信フォームページ,三番目のページ(ページ番号3),ショップページ
送信フォームページ リンク:トップページ,送信完了ページ
三番目のページ(ページ番号3) リンク:トップページ
ショップページ リンク:トップページ
送信完了ページ リンク:送信フォームページ
ページ番号6 リンク:トップページ
ページ番号7 リンク:トップページ
※リンク・・・DirectLink
※ リンク・・・Directory
ホームページ制作
テーマ:ホームページ
自動リンク
トップページURL:http://homepage2.nifty.com/gateway/
総登録数:314 最終更新日:2006/06/22 09:09:15
ホームページ制作
テーマ:ホームページ
自動リンク
トップページURL:http://homepage2.nifty.com/gateway/
総登録数:314 最終更新日:2006/06/22 09:09:15
ホームページ制作
テーマ:ホームページ
INDEXページ 作成
ホームページ制作
テーマ:ホームページ
INDEXページ アップロード
ホームページ制作ガイド