売れるためのWEBサイト構築
前回までのあらすじ WEBサイト上位表示には最低限のSEOが必要 Google,Yahoo!などはコンテンツが充実したWEBサ イトを上位表示させたがっている つまり、検索エンジンが「コンテンツ重視」になりつつ ある
今回の目的 WEBサイトのテンプレート作り クリックされやすい記事の書き方 検索結果に表示させる
WEBサイトのテンプレート テンプレート (http://netmadsen.com) XHTMLとCSSを分けて作成 カテゴリなし サイト上部に興味のあるコンテンツを書く (狙うSEOキーワードを入れる)
<HTMLソース> <?xml version="1.0" encoding="Shift_JIS"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta name="description" content="サイト説明文" /> <meta name="keywords" content="メインキーワード,サブキーワード," /> <title>サイトタイトル</title> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS" /> <link rel="stylesheet" type="text/css" href="styles.css" media="screen,tv" /> </head> <body> <div id="base"> </div> </body></html>
<CSSソース> #base { width:800px; margin-right: auto; margin-left: auto; background-color: #ffffff; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #808080; border-left-width: 2px; border-left-style: solid; border-left-color: #808080; border-right-width: 2px; border-right-style: solid; border-right-color: #808080; text-align:left; } //長さ //外枠(右) //外枠(左) //背景色 //内枠(広さ)
クリックされやすい文章の書き方 ・なぜ必要なのか ・悩みの深さ ・男性か女性か ・年齢層 ・本人か家族のためか など
検索結果に表示させる <インデックス方法> クローラー 無料ブログ ランキングサイト ブックマークサイト <確認方法> Site:サイトのアドレス
まとめ 訪問者の悩みを解決させてあげるコンテンツを書く 「誰に向けたサイトなのか?」を明確にしないと売れな い 量と質を考慮したWEBサイトが売れる
次週の予定 WEBサイト集を完成 インデックスさせる 検索結果
ご清聴ありがとうございました