changeset 2789:1b6898843ca9

1061
author OOTANI Hiroyuki <c115036@g.koeki-u.ac.jp>
date Tue, 24 Nov 2015 18:55:52 +0900
parents 080be70bb212 (current diff) 05ec9ebe2243 (diff)
children c6354b9ba311
files opencampus2015/.#accountcheck.rb syuzai/higawari/higawari2.html~ syuzai/ijyuu.html
diffstat 75 files changed, 994 insertions(+), 101 deletions(-) [+]
line wrap: on
line diff
Binary file img/sakataiju.png has changed
--- a/oasis2015/accountcheck.rb	Tue Nov 24 18:52:07 2015 +0900
+++ b/oasis2015/accountcheck.rb	Tue Nov 24 18:55:52 2015 +0900
@@ -83,7 +83,7 @@
 
 
 
-expires = "SAT, 31 Oct 2015 00:00:00 GMT"
+expires = "SAT, 2  Apr 2016 00:00:00 GMT"
 
 printf("Content-type: text/html; charset=UTF-8
 Set-Cookie:id=%s ;expires=%s
--- a/opencampus2015/.#accountcheck.rb	Tue Nov 24 18:52:07 2015 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-c113007@roy.e.koeki-u.ac.jp.21432
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/opencampus2015/acc2.rb	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,142 @@
+#!/usr/bin/env ruby22
+# -*- coding: utf-8 -*-
+
+require 'sqlite3'
+require 'kconv'
+require 'cgi'
+require 'csv'
+
+c = CGI.new(:tag_maker => "html5", :accept_charest => "UTF-8")
+db = SQLite3::Database.new("sql/main.sq3")
+csv = "list.csv"
+
+sql = "insert into test values(?, ?, ?, ?, ?, ?, ?, ?, ?)"
+
+toi = "insert into toi values (?, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)"
+item = "insert into goods values (?, 0, 0, 0, 0, 0, 0)"
+
+name = c["name"]
+pswd = c["pswd"]
+cle1 = "CREATE TABLE IF NOT EXISTS test(id, name, cal, age, sex, pswd, exp, pt, lv)"
+cle2 = "CREATE TABLE IF NOT EXISTS toi(id, q1, q2, q3, q4, q5, q6, q7, q8, q9, q10)"
+cle3 = "CREATE TABLE IF NOT EXISTS goods(id, g1, g2, g3, g4, g5, g6)"
+cle4 = "CREATE TABLE IF NOT EXISTS time(cd, now, id)"
+cle5 = "CREATE TABLE IF NOT EXISTS num(cd, id)"
+cle6 = "CREATE TABLE IF NOT EXISTS pass(id, pass, name)"
+
+cle7 = "CREATE TABLE IF NOT EXISTS zukan(no, name, tah, lv2, lv3, lv4, lv5)"
+cle8 = "CREATE TABLE IF NOT EXISTS box(id, no1, e1, t1, tm1, no2, e2, t2, tm2, no3, e3, t3, tm3)"
+ins8 = "insert into box values(?,?,0,?,?,0,0,0,0,0,0,0,0)"
+
+ins4 = 'insert into time values(?, 61, "n")'
+ins5 = 'insert into num values("aa",0)'
+ins6 = 'insert into pass values(?, ?, ?)'
+num = "select id from num where cd = ?"
+numup = "update num set id = ? where cd = ?"
+
+db.execute(cle1)
+db.execute(cle2)
+#db.execute(cle3)
+db.execute(cle4)
+db.execute(cle5)
+db.execute(cle6)
+db.execute(cle7)
+db.execute(cle8)
+if name == "createman789789789"
+  ("a".."j").each{|x|db.execute(ins4,x)}
+  db.execute(ins5)
+  #system `sqlite3 -separator , /sql/main.sq3 ".import list.csv zukan"` #(ins7)
+  CSV.foreach(csv) do |row|
+    db.execute("INSERT INTO zukan VALUES(?,?,?,?,?,?,?)",*row)
+  end
+end
+
+name = c["name"]
+namae = "#{name}"
+cal = c["cal"]
+age = c["age"]
+sex = c["sex"]
+aria = c["aria"]
+
+
+id = c.cookies["id"][0]
+pass = c.cookies["pass"][0]
+no1 = db.execute("select no from zukan where name = ?",cal)[0][0]
+t1 = db.execute("select tah from zukan where name = ?",cal)[0][0]
+
+
+if id == nil
+  number = db.execute(num, "aa")
+  begin
+    id = number[0][0].to_i + 1
+  rescue
+    ("a".."j").each{|x| db.execute(ins4,x)}
+    #  db.execute(ins4, "b")
+    #  db.execute(ins4, "c")
+    #  db.execute(ins4, "d")
+    #  db.execute(ins4, "e")
+    #  db.execute(ins4, "f")
+    #  db.execute(ins4, "g")
+    #  db.execute(ins4, "h")
+    #  db.execute(ins4, "i")
+    #  db.execute(ins4, "j")
+    db.execute(ins5)
+    id = number[0][0].to_i + 1
+  end
+  exp = 0
+  pt = 0
+  lv = 1
+  cd = "aa"
+  if pass == nil
+    pass = id
+  end
+  db.execute(ins6, id, pass, name)
+  db.execute(sql, id, name, cal, age, sex, aria, exp, pt, lv)
+  db.execute(toi, id)
+  #  db.execute(item, id)
+  db.execute(numup, id, cd)
+  db.execute(ins8,id,no1,t1.to_i/5,t1.to_i/5)
+end
+#  srand(id.to_i)  
+#  id2 = rand(1000000)
+id2 = pass
+
+
+
+expires = "SUN, 5, MAR 2017 00:00:00 GMT"
+
+printf("Content-type: text/html; charset=UTF-8
+Set-Cookie:id=%s ;expires=%s
+Set-Cookie:pass=%s ;expires=%s\n\n", id, expires, id2, expires)
+
+printf(<<_EOS_, name, id.to_i)
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+
+<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
+<meta name="format-detection" content="telephone=no">
+<link media="only screen and (max-device-width:480px)" href="smart.css" type="text/css" rel="stylesheet" />
+<link media="screen and (min-device-width:481px)" href="profeel.css" type="text/css" rel="stylesheet" />
+
+
+
+
+<link rel="shortcut icon" href="./img/cabage.png"/>
+<title>Registering Account</title>
+
+</head>
+<body>
+<h1>Miyazac Quest</h1>
+<h2>登録完了!</h2>
+<p>よくきた_ %s _よ!</p>
+<p>おまえのIDは%04dだ!</p>
+<div class="f1"><a href="prof.rb"><div class="lets"><span>始めよう!</span></div></a></div>
+<form method="POST" type="text">
+</form>
+</body></html>
+_EOS_
+if name == "createman987987987"
+filename ='sql/main.sq3'
+File.delete filename
+end
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/opencampus2015/battle.rb	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,181 @@
+#!/usr/bin/env ruby22
+# -*- coding: utf-8 -*-
+require 'cgi'
+require 'sqlite3'
+require 'kconv'
+c = CGI.new(:tag_maker => "html5", :accept_charest => "UTF-8")
+db = SQLite3::Database.new("./sql/main.sq3")
+
+per = "%"
+id = c.cookies["id"][0]
+person = id.to_i
+
+data = "select * from test where id = ?"
+cook = db.execute(data, person)
+printf("Content-type: text/html; charset=UTF-8\n\n")
+
+begin
+id,name,cal,age,sex,aria,exp,pt,lv = cook[0]
+rescue
+printf(<<_EOS_)
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+	"http://www.w3.org/TR/html4/strict.dtd">
+<html><head>
+<meta name="viewport"
+content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
+<meta name="format-detection" content="telephone=no">
+<link media="only screen and (max-device-width:480px)"
+href="smart.css" type="text/css" rel="stylesheet" />
+<link media="screen and (min-device-width:481px)" href="profeel.css"
+type="text/css" rel="stylesheet" />
+<link rel="shortcut icon" href="./img/cabage.png"/>
+<title>Miyazac Quest</title>
+<style type="text/css">
+<!--
+-->
+</style>
+</head>
+
+<body>
+<header></header>
+<h1>記録が無くなったようだ...</h1><h2>記憶も消してやりなおしたまえ......</h2>
+<div class="f1"><a href="index.html"><div class="lets"><span>新規記憶の作成</span></div></a></div>
+<div class="f1"><a href="cookie.rb"><div class="lets"><span>作成前に記憶を消す</span></div></a></div>
+<address>skip&#x40;xxxx.co.jp</address>
+<footer></footer>
+</body>
+</html>
+
+_EOS_
+exit(0)            ##プログラム終了! これがないと以降のプログラムが動いてしまう。
+end
+
+#################キャラクタ#########
+chenge = c["chenge"].to_i
+box = db.execute("select * from box where id = ?",id)
+hoge,no1,e1,t1,tm1,no2,e2,t2,tm2,no3,e3,t3,tm3=box[0]
+newname = "select name from zukan where no = ?"
+if chenge == 2
+  db.execute("update box set no1=?,e1=?,t1=?,tm1=?,no2=?,e2=?,t2=?,tm2=? where id = ?",no2,e2,t2,tm2,no1,e1,t1,tm1,id)
+calname = db.execute(newname,no2)[0][0]
+
+db.execute("update test set cal = ? where id = ?",calname,id)
+elsif chenge == 3
+  db.execute("update box set no1=?,e1=?,t1=?,tm1=?,no3=?,e3=?,t3=?,tm3=? where id = ?",no3,e3,t3,tm3,no1,e1,t1,tm1,id)
+calname = db.execute(newname,no3)[0][0]
+db.execute("update test set cal = ? where id = ?",calname,id)
+end
+
+##################################レベル処理する####
+gage = 0
+e1 = db.execute("select e1 from box where id = ?",person)[0][0]#じぶんのidのboxにある一体目の経験値
+no1 = db.execute("select no1 from box where id = ?",person)[0][0]
+no2 = db.execute("select no2 from box where id = ?",person)[0][0].to_i#2体目id
+no3 = db.execute("select no3 from box where id = ?",person)[0][0].to_i#3体目id
+lv2 = db.execute("select lv2 from zukan where no = ?",no1)[0][0].to_i
+lv3 = db.execute("select lv3 from zukan where no = ?",no1)[0][0].to_i
+lv4 = db.execute("select lv4 from zukan where no = ?",no1)[0][0].to_i
+lv5 = db.execute("select lv5 from zukan where no = ?",no1)[0][0].to_i
+if e1 < lv2
+lv = 1
+gage = 100-(e1/lv2.to_f*100)
+elsif e1 >= lv5
+lv = 5
+gage = 0
+elsif e1 >= lv4
+lv = 4
+gage = 100-(e1-lv4)/(lv5-lv4.to_f)*100
+elsif e1 >= lv3
+lv = 3
+gage = 100-(e1-lv3)/(lv4-lv3.to_f)*100
+elsif e1 >= lv2
+lv = 2
+gage = 100-(e1-lv2)/(lv3-lv2.to_f)*100
+end#########################################
+
+
+image = "./img/#{cal}#{lv}.png"
+alt = "#{cal}.png"
+
+
+
+if lv == 1
+  color = "black"
+elsif lv == 2
+  color = "navy"
+elsif lv == 3
+  color = "green"
+elsif lv == 4
+  color = "red"
+elsif lv == 5
+  color = "yellow"
+else
+  color = "pink"
+  image = "./img/snail.png"
+  alt = "snails_bug"
+end
+
+printf(<<_EOS_, per, gage, per, per, per, color, cal, image, alt, name, person, cal, lv)
+
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+	"http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+
+<meta name="viewport"
+content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
+<meta name="format-detection" content="telephone=no">
+<link media="only screen and (max-device-width:480px)"
+href="smart.css" type="text/css" rel="stylesheet" />
+<link media="screen and (min-device-width:481px)" href="profeel.css"
+type="text/css" rel="stylesheet" />
+
+
+<link rel="shortcut icon" href="./img/cabage.png"/>
+<title>BATTLE!</title>
+<style type="text/css">
+<!--
+p.gage{
+background:#adf;
+margin-left:0%s;
+margin-right:%d%s;
+text-align:left;
+border-radius: 10ex;
+}
+div.gage{
+background:#ddf;
+margin-left:20%s;
+margin-right:20%s;
+border-radius: 10ex;
+}
+div.cal div{float:left; border:solid %s;}
+
+-->
+</style>
+</head>
+
+<body>
+<header>%s</header>
+<h1>Miyazac Quest</h1>
+
+<div class="cal">
+<div>
+<img src=%s alt=%s width="172" height="172">
+</div>
+<table class="state"><tr><td>name</td><td>:%s</td></tr>
+<tr><td>id</td><td>:%04d</td></tr>
+<tr><td>cara</td><td>:%s</td></tr>
+<tr><td>lv.</td><td>%d</td></tr>
+</table>
+</div>
+
+<div class="gage">
+<p class="gage">exp</p>
+</div>
+
+<footer></footer>
+</body>
+</html>
+
+_EOS_
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/#syuzai.html#	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,64 @@
+<html lang="ja">
+
+<head>
+<title>SKIP - Shonai Koeki Information Project</title>
+<link rel="stylesheet" type="text/css" href="../skip.css">
+</head>
+
+<body>
+
+<div class="fix">
+<div class="menu">
+<table style="border-collapse: collapse; margin-left:
+ auto; margin-right: auto;">
+ <tr><td><a href="../">top</a></td><td><a href="syuzai.html">取材</a></td><td><a href="../program/program.html">プログラム
+ </a></td><td><a href="../enq/enq.html">アンケート</a></td><td><a href="../kiraribito/girl.html">きらりびと</a></td></tr>
+</table>
+</div>
+</div>
+
+<div class="main_title">
+<img src="../skip-kamo-small.png" alt="kamon">
+</div>
+
+<p class="new"><span>新着情報</span> <a href="kagetsu/kagetsu.html">「花月」記事を更新!!</a></p>
+
+<!-- このコードの使用は、Google カスタム検索の利用規約への同意を前提とし -->
+<!-- ます。 -->
+<!-- 利用規約は http://www.google.com//cse/docs/tos.html?hl=ja でご覧い -->
+<!-- ただけます -->
+<form name="cse" id="searchbox_demo"
+action="https://www.google.com/cse">
+  <input type="hidden" name="cref" value="" />
+  <input type="hidden" name="ie" value="utf-8" />
+  <input type="hidden" name="hl" value="ja" />
+  <input name="q" type="text" size="40" />
+  <input type="submit" name="sa" value="検索" />
+</form>
+<script type="text/javascript"
+src="https%3A%2F%2Fcse.google.com%2Fcse/tools/onthefly?form=searchbox_demo&#x6c;ang=ja"></script>
+                                
+
+<h1>取材一覧</h1>
+
+
+
+
+
+<table>
+<tr><th>もぐもぐ</th><th>移住情報</th><th>動物園</th><th>日替わりランチ
+ </th><th>特産物</th><th>釣り情報</th>
+<tr><th><a href="rupo/rupo.html"><img
+     src="rupo/rupo1-150.jpg"></a></th><th><a href="moare/moare.html"><img src="moare/moare1-150.JPG"></a></th>
+
+<th><a href="romantei/romantei.html"><img src="romantei/romantei1-150.jpg"></a></th><th><a href="higawari/higawari.html"><img src="higawari/higawari.jpg"></a></th>
+<th><a href="tukusan/tukusan.html"><img src="tukusi/tukusi1-150.JPG"></a></th><th><a href="dezima/dezima.html"><img src="dezima/dezima4-150.JPG"></a></th></tr></tr>
+
+
+</table>
+</body>
+</html>
+
+
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/higawari/.#higawari.css	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,1 @@
+c113061@roy.e.koeki-u.ac.jp.28702
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/higawari/.#higawari.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,1 @@
+c113061@roy.e.koeki-u.ac.jp.28702
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/higawari/base.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,54 @@
+<html>
+<head>
+
+<title>ؤ</title>
+
+<meta http-equiv="Content-Type" content="text/html; charset=Euc-jp">
+<meta http-equiv="Content-Style-Type" content="text/css">
+<meta http-equiv="Content-Script-Type" content="text/javascript">
+
+<link rel="stylesheet" type="text/css"href="../../skip.css">
+<link rel="stylesheet" type="text/css" href="higawari.css">
+
+</head>
+<!--ʾ-->
+
+
+<body>
+<h1>Ź̾</h1>
+
+<div class="menu">
+<p><img src="negisamon.jpg"alt=""></p>
+<!--img src=""alt="̾">
+
+<p>ѥ</p>
+<li>Ĥ󤿤</li>
+<li>֤ͤȥΥ꡼</li>
+<li>ΥФε</li>
+<p>顼</p>
+<li>߼</li>
+<li>ߥ</li>
+<li>㥷祳</li>
+</div>
+<!--Ź-->
+
+<div class="tizu">
+
+<div id="map">
+<p><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3104.32700659984!2d139.83532121478825!3d38.91650265342395!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x5f8e9e5d74ee910b%3A0xb144cb3582e6fae5!2z44K444Kn44Op44O844OI44Oi44Ki44Os!5e0!3m2!1sja!2sjp!4v1447764084328"
+width="600" height="450" frameborder="0" style="border:0"allowfullscreen></iframe>
+<!--Ͽ޾ɽ-->
+</p>
+
+<p>:----</p>
+<p>Tel:zzz-xxxx-yyyy</p>
+<p>ĶȻ:AM11:00~PM14:00</p>
+<p><a href="higawari.html"></a></p>
+</div>
+<!--mapνλ-->
+</div>
+<!--λ-->
+
+</body>
+</html>
+
Binary file syuzai/higawari/hayashirice.jpg has changed
Binary file syuzai/higawari/higahiga.png has changed
Binary file syuzai/higawari/higahiga.xcf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/higawari/higawari.css	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,35 @@
+body {
+     background-color: #ffbb55;
+     ration: underline; color: #682e08;
+     color: black; 
+     font-size: ;
+     text-shadow: 1px 1px 3px white;
+     text-align: left;
+     margin-left: 5%;
+      }
+
+a:link{color: #b2a68c;
+       text-decoration: underline;} 
+
+a:visited{color: #ffffff;
+          text-decoration: underline;} 
+
+a:hover{background-color: red;}
+
+div.menu{
+	background-color: #ffd355;
+	position: ;
+	margin: ;
+	border: solid #ff9900 5px;
+	margin-width: ;
+	}
+
+div.tizu{
+	background-color: #ffd355;
+	border: solid #ff9900 5px;
+	margin-width1:;}
+
+#map {
+  width: 600px;
+  height: 400px;
+}
--- a/syuzai/higawari/higawari.html	Tue Nov 24 18:52:07 2015 +0900
+++ b/syuzai/higawari/higawari.html	Tue Nov 24 18:55:52 2015 +0900
@@ -1,23 +1,26 @@
 <html>
 <head>
 <title>ؤ</title>
-<link rel="stylesheet" type="text/css" href=".css">
+<link rel="stylesheet"type="text/css"href="../../skip.css">
+<link rel="stylesheet" type="text/css" href="main.css">
 </head>
+<!--ʾ-->
 
 <body>
-<h1>ؤ</h1>
-<p>Υ...</p>
-<p>⡡餢꿩</p>
-<p>祫եͤЧܥ顼1.5̡ˡȥ</p>
-<p>ۤۤ꿩ۤۤѥåƥ</p>
+<h1><img src="higahiga.png"alt="ȥ"></h1>
+<p>ΥڡǤϷؤҲ𤷤ƤޤˤʤäŹξϡ̿򥯥åɽޤ</p>
+<p>̣Ź򤼤ҥåƤߤƤ</p>
 
-<h1></h1>
-<p>
-<a href="http://skip.koeki-prj.org/syuzai/higawari/higawari2.html">ؤŹ</a>
-</p>
-<p><a href="">...</a></p>
-<p><a href="">..</a></p>
-<p><a href="">.</a></p>
+<p>ߤϿŹ޿ 4Ź!</p>
+<p></p>
+<p>˥塼</p>
+<p>(ˤʤ̿򥯥åǾܺ٥ڡ)</p>
+<p><a href="moare.html"><img src="negisamon.jpg"alt="֤ͤȥΥ꡼"width="400"hight="300"></a></p>
+<p><a href="higawari2.html"><img src="ramen2.jpg"alt="̣顼"width="400"hight="300"></a></p>
+<p><a href="hayashi.html"><img src="hayashirice.jpg"alt="ϥ䥷饤"width="400"hight="300"></a></p>
+<p><a href="mabodon.html"><img src="mabodon.jpg"alt="ޡܡЧ"width="400"hight="300"></a></p>
+<p><img src="noimage.png"alt=""width="400"hight="300"></p>
+<p><img src="noimage.png"alt=""width="400"hight="300"></p>
 
 </body>
 </html>
Binary file syuzai/higawari/higawari.png has changed
Binary file syuzai/higawari/higawari.xcf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/higawari/higawari1.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,55 @@
+<html>
+<head>
+
+<title>ؤ</title>
+
+<meta http-equiv="Content-Type" content="text/html; charset=Euc-jp">
+<meta http-equiv="Content-Style-Type" content="text/css">
+<meta http-equiv="Content-Script-Type" content="text/javascript">
+
+<link rel="stylesheet" type="text/css"href="../../skip.css">
+<link rel="stylesheet" type="text/css" href="higawari.css">
+
+</head>
+<!--ʾ-->
+
+
+<body>
+<h1>եe顼ȡ⥢</h1>
+
+<div class="menu">
+<p><img src="negisamon.jpg"alt="֤ͤȥΥ꡼"></p>
+<!--img src=""alt="̾">
+
+<p>ѥ</p>
+<li>Ĥ󤿤</li>
+<li>֤ͤȥΥ꡼</li>
+<li>ΥФε</li>
+
+<p>顼</p>
+<li>߼</li>
+<li>ߥ</li>
+<li>㥷祳</li>
+</div>
+<!--Ź-->
+
+<div class="tizu">
+
+<div id="map">
+<p><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3104.32700659984!2d139.83532121478825!3d38.91650265342395!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x5f8e9e5d74ee910b%3A0xb144cb3582e6fae5!2z44K444Kn44Op44O844OI44Oi44Ki44Os!5e0!3m2!1sja!2sjp!4v1447764084328"
+width="600" height="450" frameborder="0" style="border:0"allowfullscreen></iframe>
+<!--Ͽ޾ɽ-->
+</p>
+
+<p>:ĻĮ17-18</p>
+<p>Tel:0234-22-5280</p>
+<p>ĶȻ:10:00~21:00</p>
+<p><a href="higawari.html"></a></p>
+</div>
+<!--mapνλ-->
+</div>
+<!--λ-->
+
+</body>
+</html>
+
--- a/syuzai/higawari/higawari2.html	Tue Nov 24 18:52:07 2015 +0900
+++ b/syuzai/higawari/higawari2.html	Tue Nov 24 18:55:52 2015 +0900
@@ -1,32 +1,43 @@
 <html>
 <head>
-<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP">
-<title>ؤ</title>
-<link rel="stylesheet" type="text/css" href=".css">
+<title>ؤ</title>
+<meta http-equiv="Content-Type" content="text/html; charset=Euc-jp">
+<meta http-equiv="Content-Style-Type" content="text/css">
+<meta http-equiv="Content-Script-Type" content="text/javascript">
+<link rel="stylesheet" type="text/css"href="../../skip.css">
+<link rel="stylesheet" type="text/css" href="higawari.css">
 </head>
+<!--ʾ-->
+
 
 <body>
-<h1>ؤ</h1>
-<h1>Ź</h1>
-<p>Υϡ꿩</p>
-<p><img src=""></p>
-<p>ƾҲʸ</p>
-<p>Υϡ꿩</p>
-<p><img src=""></p>
-<p>ƾҲʸ</p>
-<p>Υϡ꿩</p>
-<p><img src=""></p>
-<p>ƾҲʸ</p>
-<p>Υϡ꿩</p>
-<p><img src=""></p>
-<p>ƾҲʸ</p>
-<p>Υϡ꿩</p>
-<p><img src=""></p>
-<p>ƾҲʸ</p>
+<h1>Ź̾ 顼house Ȭ</h1>
+
+<p><img src="ramen.jpg"alt="ߤ顼"width=500""hight=360""></p>
+<p>1119ڡˤؤ顼</p>
+<li>ߤ顼</li>
+<li>580ߡǹ</li>
+</div>
+<!--Ź-->
 
+<div class="tizu">
+<div id="map">
 <p>
-<a href="http://skip.koeki-prj.org/syuzai/higawari/higawari.html">ؤ</a>
+<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3103.73793713704!2d139.8529889147887!3d38.929966952629876!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x5f8e9e91536d6151%3A0x5b90418f0d46e34a!2z44CSOTk4LTAwMTIg5bGx5b2i55yM6YWS55Sw5biC5LiL5a6J55S677yR77yU4oiS77yU!5e0!3m2!1sja!2sjp!4v1447949321335"
+width="600" height="400" frameborder="0" style="border:0" allowfullscreen></iframe>
+<!--Ͽ޾ɽ-->
 </p>
+<p>:ĻԲĮ14-4</p>
+<p>Tel:0234-23-3002</p>
+<p>ĶȻ: AM11:00~PM14:30</p>
+<p> AM11:00~PM14:30PM17:00~PM20:00</p>
+<p> AM11:00~PM20:00</p>
+<p>:</p>
+</div>
+</div>
+<!---->
+
+<p><a href="higawari.html"></a></p>
 
 </body>
 </html>
--- a/syuzai/higawari/higawari2.html~	Tue Nov 24 18:52:07 2015 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-<html>
-<head>
-<title>★日替わりランチ★</title>
-<link rel="stylesheet" type="text/css" href=".css">
-</head>
-
-<body>
-<h1>日替わりランチ</h1>
-<h1>○○店</h1>
-<p>月曜日のランチは○○定食</p>
-<p><img src=""></p>
-<p>内容紹介文</p>
-<p>火曜日のランチは○○定食</p>
-<p><img src=""></p>
-<p>内容紹介文</p>
-<p>水曜日のランチは○○定食</p>
-<p><img src=""></p>
-<p>内容紹介文</p>
-<p>木曜日のランチは○○定食</p>
-<p><img src=""></p>
-<p>内容紹介文</p>
-<p>金曜日のランチは○○定食</p>
-<p>img src=""></p>
-<p>内容紹介文</p>
-
-<p>
-<a href="http://skip.koeki-prj.org/syuzai/higawari/higawari.html">日替わりランチへ
-</p>
-
-</body>
-</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/higawari/higawari3.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,41 @@
+<html>
+<head>
+<title>ؤ</title>
+<link rel="stylesheet" type="text/css"href="../../skip.css">
+<link rel="stylesheet" type="text/css" href="higawari.css">
+<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
+</head>
+<!--ʾ-->
+
+
+<body>
+<h1>굮²</h1>
+
+<div class="menu">
+<p><img src=".jpg"alt=""></p>
+<!--img src=""alt="̾">
+
+<p>ѥ</p>
+<li>Ĥ󤿤</li>
+<li>֤ͤȥΥ꡼</li>
+<li>ΥФε</li>
+<p>顼</p>
+<li>߼</li>
+<li>ߥ</li>
+<li>㥷祳</li>
+
+</div>
+</div>
+<!--Ź-->
+
+<div class="tizu">
+<p>:----</p>
+<p>Tel:zzz-xxxx-yyyy</p>
+<p>ĶȻ:AM11:00~PM14:00</p>
+</div>
+<!---->
+
+<p><a href="skip.koeki-prj.org/syuzai/higawari.html"></a></p>
+
+</body>
+</html>
Binary file syuzai/higawari/mabodon.jpg has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/higawari/main.css	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,19 @@
+body {
+     background-color: #ffbb55;
+     ration: underline; color: #682e08;
+     color: black; 
+     font-size: ;
+     text-shadow: 1px 1px 3px white;
+     text-align: left;
+     margin-left: 5%;
+      }
+
+a:link{color: #b2a68c;
+       text-decoration: underline;} 
+
+a:visited{color: #ffffff;
+          text-decoration: underline;} 
+
+a:hover{background-color: red;}
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/higawari/moare.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,47 @@
+<html>
+<head>
+
+<title>ؤ</title>
+
+<meta http-equiv="Content-Type" content="text/html; charset=Euc-jp">
+<meta http-equiv="Content-Style-Type" content="text/css">
+<meta http-equiv="Content-Script-Type" content="text/javascript">
+
+<link rel="stylesheet" type="text/css"href="../../skip.css">
+<link rel="stylesheet" type="text/css" href="higawari.css">
+
+</head>
+<!--ʾ-->
+
+
+<body>
+<h1>եe顼ȥ⥢</h1>
+
+<p><img src="negisamon.jpg"alt="֤ͤȥ󥯥꡼"></p>
+<!--img src=""alt="̾">
+
+<li>֤ͤȥΥ꡼</li>
+<li>750</li>
+</p>
+<!--Ź-->
+
+<div class="tizu">
+
+<div id="map">
+<p><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3104.32700659984!2d139.83532121478825!3d38.91650265342395!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x5f8e9e5d74ee910b%3A0xb144cb3582e6fae5!2z44K444Kn44Op44O844OI44Oi44Ki44Os!5e0!3m2!1sja!2sjp!4v1447764084328"
+width="600" height="450" frameborder="0" style="border:0"allowfullscreen></iframe>
+<!--Ͽ޾ɽ-->
+</p>
+
+<p>:ĻĮ17-18</p>
+<p>Tel:0234-22-5280</p>
+<p>ĶȻ:10:00~21:00</p>
+<p><a href="higawari.html"></a></p>
+</div>
+<!--mapνλ-->
+</div>
+<!--λ-->
+
+</body>
+</html>
+
Binary file syuzai/higawari/negisamon.jpg has changed
Binary file syuzai/higawari/noimage.png has changed
Binary file syuzai/higawari/ramen.jpg has changed
Binary file syuzai/higawari/ramen2.jpg has changed
--- a/syuzai/ijyuu.html	Tue Nov 24 18:52:07 2015 +0900
+++ b/syuzai/ijyuu.html	Tue Nov 24 18:55:52 2015 +0900
@@ -6,22 +6,32 @@
 <title>ĻԤˤĤ ܽ</title>
 <link rel="stylesheet" type="text/css"href="../skip.css">
 <link rel="stylesheet" type="text/css"href="./main.css">
-
 <style type="text/css">
-
-
 <!--
+<<<<<<< local
 div + h1{padding-top:2em;}
+=======
+>>>>>>> other
 -->
 </style>
+<<<<<<< local
 <script type="text/javascript">
 <!--
 var doc = document.documentElement;
 doc.setAttribute('data-useragemt',navigator.userAgent);
 -->
 </script>
+=======
+>>>>>>> other
 </head>
+<<<<<<< local
+=======
+<body>
+<h1></h1>
 
+>>>>>>> other
+
+<<<<<<< local
 <body>
 
 <div class="fix">
@@ -35,9 +45,22 @@
 </div>
 
 <h1>Ļ԰ܽQ&A</h1>
+=======
+>>>>>>> other
 
 
 
+<table>
+<tr><th>⤰⤰</th><th>ܽ</th><th>ưʪ</th><th>ؤ
+ </th><th>ûʪ</th><th></th>
+<tr><th><a href="rupo/rupo.html"><img
+     src="rupo/rupo1-150.jpg"></a></th><th><a href="./ijyuu.html"><img src="iturn/i20091123-1450-00.jpg" width="150" height="100"></a></th>
+
+<th><a href="zoo/index.html"><img src="zoo/domon_a.jpg" width="150" height="100"></a></th><th><a href="higawari/higawari.html"><img src="higawari/higawari.jpg"></a></th>
+<th><a href="tokusan/tokusan.html"><img src="tokusan/tokusan_top.jpg" width="150" height="100"></a></th><th><a href="dezima/dezima.html"><img src="dezima/dezima4-150.JPG"></a></th></tr></tr>
+
+</table>
+<header><img src="image/sakataiju.png"></header>
 <form>
 <label>
 <input type="checkbox"name="sakata" ><span class="dekai">ߤˤĤ</span><div>
@@ -98,11 +121,7 @@
 <a href="http://www.sakata-kankou.com/event/">http://www.sakata-kankou.com/event/(Ĥݡ٥)</a>
 </ol>
 </div>
-</label>
-</form>
-
-
-<form>
+</label><br>
 <label>
 <input type="checkbox"name="sakata" ><span class="dekai">ĤϰˤĤ</span><div>
 <li>Q.ۤȤ˿ƻϰΤ?</li>
@@ -147,10 +166,7 @@
 
 </div>
 </label>
-</form>
-
-
-<form>
+<br>
 <label>
 <input type="checkbox"name="sakata" ><span class="dekai">ĤεˤĤ</span><div>
 <li>Q.Ϥɤ줯餤դޤ?</li>
@@ -197,10 +213,7 @@
 
 </div>
 </label>
-</form>
-
-
-<form>
+<br>
 <label>
 <input type="checkbox"name="sakata" ><span class="dekai">Ĥθ̤ˤĤ</span><div>
 <li>Q.</li>
@@ -217,11 +230,7 @@
 <dd>A.678Ǥʿ22ǯסߤƻϩꡢ˴Ǥߤ˼֤Ѥݤϡåɥ쥹(ߤ褦Υ)ˤʤФʤޤ</dd>
 
 </div>
-</label>
-</form>
-
-
-<form>
+</label><br>
 <label>
 <input type="checkbox"name="sakata" ><span class="dekai">ܳˤĤ</span>
 <div>
@@ -246,4 +255,3 @@
 
 </body>
 </html>
-
Binary file syuzai/image/sakataiju.png has changed
--- a/syuzai/main.css	Tue Nov 24 18:52:07 2015 +0900
+++ b/syuzai/main.css	Tue Nov 24 18:55:52 2015 +0900
@@ -1,11 +1,20 @@
 body{background:#fff;
-color:navy;}
+color:navy;
+}
+header{text-align:center;}
 ol{background:#fff;}
 li{color:red;}
 li +dd{color:blue;}
 
 
-input[type="checkbox"][name="sakata"] + span + div {display: none;}
-input[type="checkbox"][name="sakata"]:checked + span + div {display: inline;}
+input[type="checkbox"][name="sakata"] +span + div {display: none; opacity:0;}
+input[type="checkbox"][name="sakata"]:checked + span + div {display: block;
+  opacity: 1.0; transition: 3s ease-in-out;
+  transition:  1s linear;}
 
 span.dekai{font-size:2em;}
+
+
+label input{ image
+	opacity: 0;
+}
--- a/syuzai/syuzai.html	Tue Nov 24 18:52:07 2015 +0900
+++ b/syuzai/syuzai.html	Tue Nov 24 18:55:52 2015 +0900
@@ -54,7 +54,6 @@
 <th><a href="zoo/index.html"><img src="zoo/domon_a.jpg" width="150" height="100"></a></th><th><a href="higawari/higawari.html"><img src="higawari/higawari.jpg"></a></th>
 <th><a href="tokusan/tokusan.html"><img src="tokusan/tokusan_top.jpg" width="150" height="100"></a></th><th><a href="dezima/dezima.html"><img src="dezima/dezima4-150.JPG"></a></th></tr></tr>
 
-
 </table>
 </body>
 </html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/syuzai.html.orig	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,64 @@
+<html lang="ja">
+
+<head>
+<title>SKIP - Shonai Koeki Information Project</title>
+<link rel="stylesheet" type="text/css" href="../skip.css">
+</head>
+
+<body>
+
+<div class="fix">
+<div class="menu">
+<table style="border-collapse: collapse; margin-left:
+ auto; margin-right: auto;">
+ <tr><td><a href="../">top</a></td><td><a href="syuzai.html"></a></td><td><a href="../program/program.html">ץ
+ </a></td><td><a href="../enq/enq.html">󥱡</a></td><td><a href="../kiraribito/girl.html">Ӥ</a></td></tr>
+</table>
+</div>
+</div>
+
+<div class="main_title">
+<img src="../skip-kamo-small.png" alt="kamon">
+</div>
+
+<p class="new"><span></span> <a href="kagetsu/kagetsu.html">ֲַ׵򹹿</a></p>
+
+<!-- ΥɤλѤϡGoogle มѵؤƱդȤ -->
+<!-- ޤ -->
+<!-- ѵ http://www.google.com//cse/docs/tos.html?hl=ja Ǥ -->
+<!-- ޤ -->
+<form name="cse" id="searchbox_demo"
+action="https://www.google.com/cse">
+  <input type="hidden" name="cref" value="" />
+  <input type="hidden" name="ie" value="utf-8" />
+  <input type="hidden" name="hl" value="ja" />
+  <input name="q" type="text" size="40" />
+  <input type="submit" name="sa" value="" />
+</form>
+<script type="text/javascript"
+src="https%3A%2F%2Fcse.google.com%2Fcse/tools/onthefly?form=searchbox_demo&#x6c;ang=ja"></script>
+                                
+
+<h1></h1>
+
+
+
+
+
+<table>
+<tr><th>⤰⤰</th><th>ܽ</th><th>ưʪ</th><th>ؤ
+ </th><th>ûʪ</th><th></th>
+<tr><th><a href="rupo/rupo.html"><img
+     src="rupo/rupo1-150.jpg"></a></th><th><a href="iturn/iturn.html"><img src="iturn/i20091123-1450-00.jpg" width="150" height="100"></a></th>
+
+<th><a href="zoo/index.html"><img src="zoo/domon_a.jpg" width="150" height="100"></a></th><th><a href="higawari/higawari.html"><img src="higawari/higawari.jpg"></a></th>
+<th><a href="tokusan/tokusan.html"><img src="tokusan/"></a></th><th><a href="dezima/dezima.html"><img src="dezima/dezima4-150.JPG"></a></th></tr></tr>
+
+
+</table>
+</body>
+</html>
+
+
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/tokusan/.#yasai.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,1 @@
+c113133@roy.e.koeki-u.ac.jp.24949
\ No newline at end of file
Binary file syuzai/tokusan/akanegimiso.jpg has changed
Binary file syuzai/tokusan/akebi.jpg has changed
Binary file syuzai/tokusan/akiduki.jpg has changed
Binary file syuzai/tokusan/asupara.jpg has changed
Binary file syuzai/tokusan/babaroa.jpg has changed
Binary file syuzai/tokusan/budou.jpg has changed
Binary file syuzai/tokusan/budou2.jpg has changed
Binary file syuzai/tokusan/daikonnoha.jpg has changed
Binary file syuzai/tokusan/ichigo.jpg has changed
Binary file syuzai/tokusan/ichiziku.png has changed
Binary file syuzai/tokusan/ingen.jpg has changed
Binary file syuzai/tokusan/kabotya2.jpg has changed
Binary file syuzai/tokusan/kaki.jpg has changed
Binary file syuzai/tokusan/kaki2.jpg has changed
Binary file syuzai/tokusan/kome.jpg has changed
Binary file syuzai/tokusan/kome2.jpg has changed
Binary file syuzai/tokusan/kome3.jpg has changed
Binary file syuzai/tokusan/kome4.jpg has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/tokusan/kudamono.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,51 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+	"http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+<title>ʪʡ</title>
+<style type="text/css">
+</style>
+<link rel="stylesheet" type="text/css" href="main.css">
+</head>
+
+<body>
+<h1>ǤϡǺΤʪҲ𤷤ޤ</h1>
+
+<p>ӡʼϻ</p>
+<p>οϡ</p>
+<p><img src="akebi.jpg" width="150" height="100"></p>
+
+<p>֤ɤʼϻ</p>
+<p>ħ</p>
+<p><img src="budou.jpg" width="150" height="100"></p>
+
+<p>֤ɤʼϻ</p>
+<p><img src="budou2.jpg" width="150" height="100"></p>
+
+<p>ʼϻ10܏11ܡ</p>
+<p>ϤϡȥȤǴṬ̌ǻǤ</p>
+<p><img src="kaki.jpg" width="150" height="100"></p>
+
+<p></p>
+<p><img src="kaki2.jpg" width="150" height="100"></p>
+
+<p>ʼϻ</p>
+<p><img src="meron.jpg" width="150" height="100"></p>
+
+<p></p>
+<p><img src="meron2.jpg" width="150" height="100"></p>
+
+<p>ʼϻ</p>
+<p><img src="nashi.jpg" width="150" height="100"></p>
+
+<p>󥴡ʼϻ</p>
+<p><img src="ringo.jpg" width="150" height="100"></p>
+
+<p></p>
+<p><img src="ringo2.jpg" width="150" height="100"></p>
+
+<p>ʼϻ</p>
+<p><img src="ichigo.jpg" width="150" height="100"></p>
+
+</body>
+</html>
Binary file syuzai/tokusan/kyuri.jpg has changed
Binary file syuzai/tokusan/mattya.jpg has changed
Binary file syuzai/tokusan/meron.jpg has changed
Binary file syuzai/tokusan/meron2.jpg has changed
Binary file syuzai/tokusan/nashi.jpg has changed
Binary file syuzai/tokusan/nashi_setsumei.jpg has changed
Binary file syuzai/tokusan/okura.jpg has changed
Binary file syuzai/tokusan/ringo.jpg has changed
Binary file syuzai/tokusan/ringo2.jpg has changed
Binary file syuzai/tokusan/satsumaimo.jpg has changed
--- a/syuzai/tokusan/tokusan.html	Tue Nov 24 18:52:07 2015 +0900
+++ b/syuzai/tokusan/tokusan.html	Tue Nov 24 18:55:52 2015 +0900
@@ -4,20 +4,33 @@
 <html>
 <head>
 <title>ûʪ</title>
-<link rel="stylesheet" type="text/css" href="kagetsu.css">
 </head>
-
+<link rel="stylesheet" type="text/css"href="../../skip.css">
 <body>
-<h1>ûʪҲ𤹤!</h1>
-<h2>ݡ</h2>
+<h1>ûʪҲ𥳡ʡ</h1>
+<h2>ˤϡûʪޤޤΤƤʤ䡢
+󥸥쥷ԤҲ𤹤ΤǡҤ</h2>
 
-<h3>ľ֤Ȫפ˼˹ԤäƤޤ!</h3>
-
-<p>̿򤢤ޡ</p>
+<h3>Źް</h3>
+<h3>ľ֤Ȫסʹ2015ǯ1124</h3>
 
 
+<p>ʲΥ󥯤򥯥åȡƥʡޤ</p>
 
-<h1>⤷ʪ󤢤ä!ߤʹԤäƤߤƤ!</h1>
+<table>
+<tr><th>ڥʡ</th><th>ʪʡ</th><th>Ĵʡ</th>
+<tr><th><a href="yasai.html"><img src="ingen.jpg" width="150"
+     height="100"></a></th>
+<th><a href="kudamono.html"><img src="budou.jpg" width="150"
+ height="100"></a></th>
+<th><a href="tyouri.html"><img src="akanegimiso.jpg" width="150"
+ height="100"></a></th></tr></tr>
+</table>
+
+<p>ľ֤Ȫ׾</p>
+<p>Ȥ998-0101ĻԺտĻ18 1</p>
+<p>TEL0234 41 0283</p>
+<p>ĶȻ֡9ߵ830ʬˏ18ߵ1730ʬ</p>
 
 </body>
 </html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/tokusan/tokusan.html.orig	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,63 @@
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+        "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+<title>ûʪ</title>
+<link rel="stylesheet" type="text/css" href="kagetsu.css">
+</head>
+
+<body>
+<h1>ûʪҲ𤹤!</h1>
+<h2>ݡ</h2>
+
+<h3>ľ֤Ȫפ˼˹ԤäƤޤ!</h3>
+
+<p>̿򤢤ޡ</p>
+
+
+
+<h1><img src="akanegimiso.jpg"></h1>
+<h1><img src="babaroa.jpg"></h1>
+<h1><img src="IMG_20151003_164841.jpg"></h1>
+<h1><img src="IMG_20151003_164909.jpg"></h1>
+<h1><img src="IMG_20151003_164921.jpg"></h1>
+<h1><img src="IMG_20151003_164943.jpg"></h1>
+<h1><img src="IMG_20151003_164956.jpg"></h1>
+<h1><img src="IMG_20151003_165014.jpg"></h1>
+<h1><img src="IMG_20151003_165039.jpg"></h1>
+<h1><img src="IMG_20151003_165052.jpg"></h1>
+<h1><img src="IMG_20151003_165058.jpg"></h1>
+<h1><img src="IMG_20151003_165104.jpg"></h1>
+<h1><img src="IMG_20151003_165109.jpg"></h1>
+<h1><img src="IMG_20151003_165113.jpg"></h1>
+<h1><img src="IMG_20151003_165123.jpg"></h1>
+<h1><img src="IMG_20151003_165129.jpg"></h1>
+<h1><img src="IMG_20151003_165135.jpg"></h1>
+<h1><img src="IMG_20151003_165147.jpg"></h1>
+<h1><img src="IMG_20151003_165151.jpg"></h1>
+<h1><img src="IMG_20151003_165209.jpg"></h1>
+<h1><img src="IMG_20151003_165223.jpg"></h1>
+<h1><img src="IMG_20151003_165240.jpg"></h1>
+<h1><img src="IMG_20151003_165251.jpg"></h1>
+<h1><img src="IMG_20151003_165255.jpg"></h1>
+<h1><img src="IMG_20151003_165344.jpg"></h1>
+<h1><img src="IMG_20151003_165350.jpg"></h1>
+<h1><img src="IMG_20151003_165354.jpg"></h1>
+<h1><img src="IMG_20151003_165359.jpg"></h1>
+<h1><img src="IMG_20151003_165410.jpg"></h1>
+<h1><img src="IMG_20151003_165416.jpg"></h1>
+<h1><img src="IMG_20151003_165424.jpg"></h1>
+<h1><img src="IMG_20151003_165430.jpg"></h1>
+<h1><img src="IMG_20151003_165444.jpg"></h1>
+<h1><img src="IMG_20151003_165448.jpg"></h1>
+<h1><img src="IMG_20151003_165506.jpg"></h1>
+<h1><img src="IMG_20151003_165511.jpg"></h1>
+<h1><img src=""></h1>
+<h1><img src=""></h1>
+<h1><img src=""></h1>
+<h1><img src=""></h1>
+<h1>⤷ʪ󤢤ä!ߤʹԤäƤߤƤ!</h1>
+
+</body>
+</html>
Binary file syuzai/tokusan/tomato.jpg has changed
Binary file syuzai/tokusan/tomato_setsumei.jpg has changed
Binary file syuzai/tokusan/tomatozyamu.jpg has changed
Binary file syuzai/tokusan/tomatozyamu2.jpg has changed
Binary file syuzai/tokusan/tsukemono.jpg has changed
Binary file syuzai/tokusan/tsuyahime.jpg has changed
Binary file syuzai/tokusan/tsuyahime2.jpg has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/tokusan/tyouri.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+	"http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+<title>Ĵʡ</title>
+<style type="text/css">
+<!--
+
+-->
+</style>
+<link rel="stylesheet" type="text/css" href="main.css">
+</head>
+
+<body>
+<h1>縫Ф</h1>
+<p></p>
+
+
+
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/tokusan/yasai.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+	"http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+<title>ڥʡ</title>
+<style type="text/css">
+<!--
+
+-->
+</style>
+<link rel="stylesheet" type="text/css" href="main.css">
+</head>
+
+<body>
+<h1>ڤμ̿򥢥åפޤ</h1>
+<p></p>
+
+
+
+</body>
+</html>
Binary file syuzai/tokusan/スチューベン.jpg has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syuzai/zoo/kuma.html	Tue Nov 24 18:55:52 2015 +0900
@@ -0,0 +1,21 @@
+<html>
+<head>
+<title></title>
+<style type="text/css">
+
+<!--
+
+-->
+
+</style>
+</head>
+<body>
+<h1>朝日村</h1>
+<p>くまさん家</p>
+<p><a href="DSC02735.JPG"></p>
+
+
+
+
+</body>
+</html>

yatex.org