2. HTML csh AWK AWK 1., 2., 3. 2 HTML HTML HyperText Markup Language WWW WWW (.html

Size: px
Start display at page:

Download "2. HTML 2 3. 1 1 100 6 4. csh AWK 4. 4. AWK 1., 2., 3. 2 HTML HTML HyperText Markup Language WWW WWW (.html"

Transcription

1 1. 1 AWK HTML HTML Yahoo! 3 Yahoo! ( 1 Yahoo! : ( ) ( ) Netscape Netscape Yahoo!

2 2. HTML csh AWK AWK 1., 2., 3. 2 HTML HTML HyperText Markup Language WWW WWW (.html

3 2. HTML 3 ) HTML ( ) 2 HTML < > </ > < > 2 HTML : <html> <head> <title> </title> </head> <body> </body> </html> HTML HTML ( ) 4 < =" "...> 2 L A TEX 3 HTML HTML HTML 3 L A TEX 4 HTML

4 2. HTML 4 <html> </html>: HTML HTML 5 <head> </head>: HTML <title> </title>: HTML WWW <body> </body>: HTML HTML <br>: <hr>: + <b> </b>: <font> </font>: <small> </small>: <center> </center>: <h[n]> </h[n]>: ([n] ) <a> </a>: <div> </div>: <table> </table>: <tr> </tr>: <table> <td> </td>: <tr> 5 HTML xml DOCTYPE

5 3. YAHOO! 5 <script> </script>: Javascript <noscript> </noscript>: Javascript <form> </form>: <img>: <!-- -->: ( ) HTML HTML ([7], [8] ) HTML ([9] ) 3 Yahoo! Yahoo! HTML <table> ( <tr>, <td> ) WWW 6 <table> Yahoo! HTML <html> <head> <!-- --> <title>yahoo! - XXXX - </title>... </head> <body marginheight=0 topmargin=0> <center>... <!--- CONTENTS_TITLE_TABLE ---> <table border=0 cellpadding=2 cellspacing=0 width=100%> <tr bgcolor="#9999cc"> <td nowrap> 6 table CSS

6 3. YAHOO! 6 <b><font size=+1> </font></b> <small> ( )12 00 </small> </td>... <!--- /CONTENTS_TITLE_TABLE ---> <!--br--> <!--- OUTLINE_TABLE ---> <font size=5 class="s130"><b> </b></font> <br><br> ( )... <div align=right> XXXX </div><br> </td></tr> <!--- /YBB module ---> <hr width=100% size=0> <small> <a href=" </a><br> Copyright (C) 2006 XXXX <br> Copyright (C) 2006 Yahoo Japan Corporation. All Rights Reserved. <br> </small> </center> </body> </html> <title> </title> 2. <!--- CONTENTS_TITLE_TABLE ---> <b><font size=+1>... </small> 3. <!--- OUTLINE_TABLE ---> 4. <!--- /YBB module ---> Copyright (C) HTML

7 4. 7 AWK END <title> </title> 3 <title> </title> 3 <title>, </title> <title> </title> AWK getline 2. ( ) getline getline: $0 1, 0, 1 AWK ( ) getline : ($0 ~ /<title>/){ N=0 h[++n]=$0 while($0!~ /<\/title>/){

8 4. 8 getline h[++n]=$0 # h[1] ~ h[n] : ($0 ~ /<title>/){ flag=1; N=0 (flag==1){ h[++n]=$0 if($0 ~ /<\/title>/){ flag=0 # h[1] ~ h[n] $0 ~,!~ ~ / / :!~ / / : / / / \ \/ ( ) <title> </title> h[++n]=$0 str = str $0 AWK 2 getline </title> ( ) getline if(getline<=0){ errorexit=1; exit exit END errorexit ( ) END

9 5. 9 END{ if(errorexit){ printf " (code = %d)\n",errorexit > "/dev/stderr" exit... END printf > "/dev/stderr" Unix AWK <title> </title> AWK 2 1. sub(), gsub() 2. substr() (match() index() ) sub(r,s,c): c ( $0) r s gsub(r,s,c): c ( $0) r s substr(s,n,len): s n len ( s ) index(s,c): s c (s ) ( 0 )

10 5. 10 match(s,r): s r (s ) ( 0 ) match() RSTART RLENGTH RSTART = r RLENGTH = r s="54321" match(s,/[2-4]*/) RSTART=2, RLENGTH=3 ( 432 ) [2-4] = 2,3,4 [2-4]* = 2,3,4 0 ( ) 432 c=substr(s,rstart,rlength) c 432 s="<title> </title>" 1. sub(), gsub() sub(/<title>/,"",s) sub(/<\/title>/,"",s)

11 5. 11 s= 2 sub() gsub() gsub(/<\/?title>/,"",s) \/? \/ <title> </title> gsub() ( ) 1 gsub() 2. substr() s <title> </title> n1=length("<title>") n2=length("</title>") s1=substr(s,n1+1,length(s)-n1-n2) length(s) s <title> </title> substr() match() index() if(match(s,/<title>[ \t]*/)) # [ \t] s=substr(s,rstart+rlength) # if(match(s,/[ \t]*<\/title>/)) s=substr(s,1,rstart-1) # sub() sub(/.*<title>[ \t]*/,"",s) #.* 0 sub(/[ \t]*<\/title>.*/,"",s) sub(), gsub() substr() + match() sub(), gsub()

12 getline 5 sub(), gsub() 3 1. <title> </title> ##### ##### ($0 ~ /<title>/){ titlestr=$0 while(titlestr!~ /<\/title>/){ if(getline<=0){ errorexit=1; exit titlestr = titlestr $0 sub(/.*<title>[ \t]*/,"",titlestr) sub(/[ \t]*<\/title>.*/,"",titlestr) next 4, ##### ##### ($0 ~ / CONTENTS_TITLE_TABLE/){ # while($0!~ /<font size/) if(getline<=0){ errorexit=2; exit # headline headline=$0 while(headline!~ /<\/small>/){ if(getline<=0){ errorexit=3; exit headline = headline $0

13 6. 13 # (font,small) gsub(/<\/?font[^>]*>/,"",headline) sub(/[ \t]*<small>[ \t]*/,"",headline) sub(/[ \t]*<\/small>.*/,"",headline) while($0!~ /\/CONTENTS_TITLE_TABLE/) if(getline<=0){ errorexit=4; exit next CONTENTS_TITLE_TABLE 1. while() <font size getline 2. headline </small> getline headline 3. headline (font, small) 4. /CONTENTS_TITLE_TABLE <font>, </font> gsub() <small>, </small> sub() font small <b>, </b> <font> <\/?font[^>]*> [^>] : > [^>]* : > 0 [^>]*> : > 0 > <font> <font size=+1> <font > >

14 OUTLINE_TABLE HTML OUTLINE_TABLE ##### ##### # N_ot = OUTLINE_TABLE ($0 ~ / OUTLINE_TABLE/){ N_ot++ # OUTLINE_TABLE (N_ot==1 && $0 ~ / OUTLINE_TABLE/){ # while($0!~ /<font size/) if(getline<=0){ errorexit=5; exit # (body[1] ~ body[n_body]) N_body=0 do{ if($0 ~ /<\/?font/) gsub(/<\/?font[^>]*>/,"") body[++n_body]=$0 if(getline<=0){ errorexit=6; exit while($0!~ /<div/) # <div> (<br>) sub(/<div[^>]*>/,"<br>") body[++n_body]=$0 # </div> while($0!~ /<\/div/){ if(getline<=0){ errorexit=7; exit body[++n_body]=$0 # </div> sub(/<\/div>/,"",body[n_body]) next N_ot OUTLINE_TABLE OUTLINE_TABLE font div <div...> (<br>) </div>

15 6. 15 body 6.4 Copyright 3 4. Copyright ##### Copyright ##### ($0 ~ /\/YBB module/){ while($0!~ /Copyright/) if(getline<=0){ errorexit=8; exit N_tail=0 do{ gsub(/<\/?small>/,"") gsub(/<\/?center>/,"") tail[++n_tail]=$0 while($0!~ /<\/html>/ && getline>0) exit /YBB module Copyright </html> tail small center 6.5 END ##### ##### # function putheader(titlestr,headline) { print "<html>" print "<head>" printf "<title>%s</title>\n",titlestr print "</head>" print "<body>" printf "<h1>%s</h1>\n",titlestr

16 6. 16 printf "%s<hr>\n",headline # function putbody(body,n, j) { for(j=1;j<=n;j++) print body[j] # function puttail(tail,n, j) { print "<hr>" for(j=1;j<=n;j++) print tail[j] putheader(): (titlestr) (<title> </title>) (<h1> </h1>) (headline) (<hr>) putbody(): puttail(): (<hr>) Copyright END ##### END ##### END{ if(errorexit){ printf " (code = %d)\n",errorexit > "/dev/stderr" exit putheader(titlestr,headline) putcontents(body,n_body) puttail(tail,n_tail)

17 ##### ##### ($0 ~ /<title>/){ titlestr=$0 while(titlestr!~ /<\/title>/){ if(getline<=0){ errorexit=1; exit titlestr = titlestr $0 sub(/.*<title>[ \t]*/,"",titlestr) sub(/[ \t]*<\/title>.*/,"",titlestr) next ##### ##### ($0 ~ / CONTENTS_TITLE_TABLE/){ # while($0!~ /<font size/) if(getline<=0){ errorexit=2; exit # headline headline=$0 while(headline!~ /<\/small>/){ if(getline<=0){ errorexit=3; exit headline = headline $0 # (font,small) gsub(/<\/?font[^>]*>/,"",headline) sub(/[ \t]*<small>[ \t]*/,"",headline) sub(/[ \t]*<\/small>.*/,"",headline) while($0!~ /\/CONTENTS_TITLE_TABLE/) if(getline<=0){ errorexit=4; exit next ##### ##### # N_ot = OUTLINE_TABLE ($0 ~ / OUTLINE_TABLE/){ N_ot++ # OUTLINE_TABLE (N_ot==1 && $0 ~ / OUTLINE_TABLE/){ # while($0!~ /<font size/)

18 7. 18 if(getline<=0){ errorexit=5; exit # (body[1] ~ body[n_body]) N_body=0 do{ if($0 ~ /<\/?font/) gsub(/<\/?font[^>]*>/,"") body[++n_body]=$0 if(getline<=0){ errorexit=6; exit while($0!~ /<div/) # <div> (<br>) sub(/<div[^>]*>/,"<br>") body[++n_body]=$0 # </div> while($0!~ /<\/div/){ if(getline<=0){ errorexit=7; exit body[++n_body]=$0 # </div> sub(/<\/div>/,"",body[n_body]) next ##### Copyright ##### ($0 ~ /\/YBB module/){ while($0!~ /Copyright/) if(getline<=0){ errorexit=8; exit N_tail=0 do{ gsub(/<\/?small>/,"") gsub(/<\/?center>/,"") tail[++n_tail]=$0 while($0!~ /<\/html>/ && getline>0) exit ##### END ##### END{ if(errorexit){ printf " (code = %d)\n",errorexit > "/dev/stderr" exit putheader(titlestr,headline) putbody(body,n_body) puttail(tail,n_tail)

19 8. 19 ##### ##### # function putheader(titlestr,headline) { print "<html>" print "<head>" printf "<title>%s</title>\n",titlestr print "</head>" print "<body>" printf "<h1>%s</h1>\n",titlestr printf "%s<hr>\n",headline # function putbody(body,n, j) { for(j=1;j<=n;j++) print body[j] # function puttail(tail,n, j) { print "<hr>" for(j=1;j<=n;j++) print tail[j] 8 HTML AWK HTML HTML AWK AWK [1], [2], [3] [4], [5], [6] [1] AWK (2006) [2] AWK (2006) [3] AWK (2006)

20 8. 20 [4] A.V. B.W. P.J. ( ) AWK (2004) ( 1989) [5] D.Dougherty A.Robbins ( ) sed & awk (1997) [6] AWK 256 (1993) [7] HTML (1996) [8] HTML & XHTML & CSS (2002) [9] WWW

HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17

HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17 1 11 13 2 11 27 3 12 11 HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17 WWW(World Wide Web) HTML(HyperText Markup Language) HTML HTML HTML HTML - 1 - .1 HTML (V)(C) HTML - 2 - HTML HTML OS Windows 2.1 HTML

More information

html_text

html_text HTML の 基 礎 2015.12.15 1. HTML ファイルの 構 成 1.1. HTML とは? Web ブラウザでホームページを 表 示 するためには,HTML(Hyper Text Markup Language)と 呼 ぶ 言 語 で 記 述 す る 必 要 が あ り ま す.HTML 形 式 のファイルは < と > で 囲 んだ 予 約 語 (タグ)を 含 むテキストファイルで,Web

More information

(1) <html>,,,,, <> ( ) (/ ) (2) <!DOCTYPE html> HTML5 (3) <html> HTML (4) <html lang= ja > html (ja) (5) JavaScript CSS (6) <meta charset= shift jis >

(1) <html>,,,,, <> ( ) (/ ) (2) <!DOCTYPE html> HTML5 (3) <html> HTML (4) <html lang= ja > html (ja) (5) JavaScript CSS (6) <meta charset= shift jis > HTML HTML HyperText Markup Language (Markup Language) (< > ) 1 sample0.html ( ) html sample0.html // JavaScript

More information

モール管理者マニュアル Ver.1.0

モール管理者マニュアル Ver.1.0 1 Html 編 集 ツール 補 足 マニュアル Ver.1.0 株 式 会 社 ソフトクリエイト 2012/11/14 目 次 1. Html について... 3 1.1. Html とは... 4 1.2. Html タグの 基 本... 5 1.2.1. HTML タグの 基 礎... 5 1.2.2. HTML タグの 種 類 ( 主 要 タグ)... 7 2. Html 編 集 ツール...

More information

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2. 1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.......................... 4 3......................

More information

3 1 5 1.1....................................... 6 1.2.......................................... 6 1.3..................................... 7 1.4.................................... 8 1.4.1.............................

More information

1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2

1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2 XHTML DOM JavaScript 2 2008 7 1 1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2 2.1.2 HTML.........................

More information

HTML入門

HTML入門 HTML ABC of Hyper Text Markup Language 2009 2 HTML2009 Copyright 2009 by BohYoh Shibata 3 WWW HTML WWW WWWworld wide web hyper text resource 4 HTML2009 http WWW httphyper text transfer protocol HTML HTMLhyper

More information

1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6.....................

1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6..................... web 0448039 1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6...................... 3 7 HTML CSS.................... 3 8....................

More information

橡ホームページの作り方

橡ホームページの作り方 1. 1.1. HTML Word HTML(Hyper Text Markup Language) html htm MS-WORD MS-WORD HTML HTML HTML (1.0) 1 1978 7 10 S 3

More information

6 2 1

6 2 1 6 1 6 (1) (2) HTML (3) 1 Web 1 Web Web 1 Web HTML 6 2 1 6 3 1.1 HTML(XHTML) Web HTML(Hyper Text Markup Language) ( ) html htm HTML HTML5 takahagi

More information

20 180pixel 180pixel Copyright 2014 Yahoo Japan Corporation. All Rights Reserved.

20 180pixel 180pixel Copyright 2014 Yahoo Japan Corporation. All Rights Reserved. 12 300pixel 300pixel www.yahoo.co.jp Copyright 2014 Yahoo Japan Corporation. All Rights Reserved. 20 180pixel 180pixel Copyright 2014 Yahoo Japan Corporation. All Rights Reserved. 300pixel 300pixel www.yahoo.co.jp

More information

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb " # $ % & ' ( ) * +, -. / 0 1 2 3 4 5 6 7 8 9 : ; < = >? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y " # $ % & ' ( ) * + , -. / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B

More information

[ ][ ] HTML [ ] HTML HTML

[ ][ ] HTML [ ] HTML HTML COPYRIGHT 2009 MAGREX, ALL RIGHTS RESERVED. [ ][ ] HTML [ ] HTML HTML [ ][ ] / / / [ ][ ] HTML HTML URL URL [ ][ ] Cellpadding Cellspacing ID ID URL [ ][ ] ID ID URL [ ][ ] ID ID URL [ ][ ] [ ][ ] [ ]

More information

コンピュータサイエンス 4. ウェブプログラミング

コンピュータサイエンス 4. ウェブプログラミング 4. Chris Plaintail 2014 1 / 43 1 HTML CSS 2 JavaScript DOM jquery 3 4 PHP SQL PHP SQL 2 / 43 HTML HTML CSS HTML Ajax (Asynchronous JavaScript + XML) PHP SQL 3 / 43 HTML, CSS http, https CSS HTML CSS.html

More information

1 1.1 1.2 1.3 (a) WYSIWYG (What you see is what you get.) (b) (c) Hyper Text Markup Language: SGML (Standard Generalized Markup Language) HTML (d) TEX

1 1.1 1.2 1.3 (a) WYSIWYG (What you see is what you get.) (b) (c) Hyper Text Markup Language: SGML (Standard Generalized Markup Language) HTML (d) TEX L A TEX HTML 2000 7 2 ([-30]5051.49) 1 2 1.1.............................................. 2 1.2.............................................. 2 1.3................................................ 2 1.4.............................................

More information

07_経営論集2010 小松先生.indd

07_経営論集2010 小松先生.indd 19 1 2009 105 123 Web Web Web Web World Wide Web WWW OS 1990 WWW Web HTML CSS JavaScript Web 1 WWW 2 Web Web 3 Web 4 HTML5 5 Web Web 3 1970 WWW HTML Web WWW WWW WWW WWW WWW 105 Web WWW 2 Web 1 1 NTT NTT

More information

ホームページ制作スターターズ

ホームページ制作スターターズ HTML タグ はじめての 方 ガイド Ver1.0 1 < 目 次 > 1ホームページ 構 造 2HTML タグ 3スタイルシート Copyright ナレッジコーディネーター All Rights Reserved. 2 第 1 章 ホームページ 構 造 Copyright ナレッジコーディネーター All Rights Reserved. 3 1HTMLとは ウェブ 上 の 文 書 を 記 述

More information

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3...................

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3................... 0448051 1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3.................... 4 4........................ 6 5...........................

More information

コンピュータサイエンス 1. ウェブの基本

コンピュータサイエンス 1. ウェブの基本 1. Chris Plaintail May 18, 2016 1 / 27 1 2 HTML HTML 3 CSS style 2 / 27 HTML HTML HTML HTML CSS HTML CSS 3 / 27 4 / 27 HTML HTML, CSS HTML, CSS http, https file CSS HTML CSS.html PC file:// PC.html 5 /

More information

Copyright 2008 All Rights Reserved 2

Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 1 Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 3 Copyright 2008 All Rights Reserved 4 Copyright 2008 All Rights Reserved 5 Copyright 2008 All

More information

ハピタス のコピー.pages

ハピタス のコピー.pages Copyright (C) All Rights Reserved. 10 12,500 () ( ) ()() 1 : 2 : 3 : 2 4 : 5 : Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All

More information

経営論集2011_07_小松先生.indd

経営論集2011_07_小松先生.indd 20 1 2010 103 125 HTML+CSS HTML CSS CMS Web CMS CMS CMS CMS DreamWeaver Web Web CMS Web Web CSS Web Eclipse HTML CSS Web Web HTML CSS Web HTML CSS Web HTML CSS Web 1 Web Web HTML Web 103 HTML+CSS Web HTML

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション HTMLガイダンス 1 HTMLを 用 いたUI 設 定 2 色 々な 見 え 方 で 画 面 に 表 示 されるWebページ 全 て 文 字 /キャラクタで 表 現 されたデータの 集 まり HTML(Hyper Text Markup Language) パソコン 等 のインターネット 端 末 のブラウザソフトで 文 書 情 報 を 表 示 するときに 用 いられるプログラム 言 語 の 一 種

More information

untitled

untitled MoogaOne 1. MoogaOne... 1 2. MoogaOne... 1 3.... 1 4.... 1 5.... 2 6.... 2 1.... 2 2.... 2 3. Template.htm... 2 4. index.htm... 4 [ ]... 4 5.... 4 6.... 6 7.... 6 8.... 6 [Template.htm Template-e.htm

More information

Copyright 2008 NIFTY Corporation All rights reserved. 2

Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 3 Copyright 2008 NIFTY Corporation All rights reserved. 4 Copyright 2008 NIFTY Corporation

More information

初心者にもできるアメブロカスタマイズ新2016.pages

初心者にもできるアメブロカスタマイズ新2016.pages Copyright All Rights Reserved. 41 Copyright All Rights Reserved. 60 68 70 6 78 80 Copyright All Rights Reserved. FC2 97 Copyright All Rights Reserved. Copyright All Rights Reserved. Copyright All Rights

More information

- 2 Copyright (C) 2006. All Rights Reserved.

- 2 Copyright (C) 2006. All Rights Reserved. - 2 Copyright (C) 2006. All Rights Reserved. 2-3 Copyright (C) 2006. All Rights Reserved. 70-4 Copyright (C) 2006. All Rights Reserved. ...1...3...7...8 1...9...14...16 2...18...20...21 3...22...23...23...24

More information

JavaScriptプログラミング入門

JavaScriptプログラミング入門 JavaScript 2015 8 15 1 2 1.1 JavaScript.................................. 2 1.2..................................... 3 1.3 if................................... 4 2 6 2.1.....................

More information

SGML HTML XML Markup Language Web HTML HTML SGML Standard Generalized Markup Language Markup Language DTD Document Type Definition XML SGML Markup Language HTML XML HTML XML JavaScript JAVA CGI HTML Web

More information

#"

# !" #" !!! $" x %" 2011.3.11 3.12 3.1 4.02 4.17 4.24 4.28 4.29 5.8 5.14 6.4 7.3 8.1 8.10 8.23 8.28 9.10 9.30 11.13 11.21 12.23 12.28 2012.2.24 3.18 3.20 3.24 &" ! '" (" )" *" !+" !!" !#" !$" !%" !& !'"

More information

Copyright 2006 KDDI Corporation. All Rights Reserved page1

Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page2 Copyright 2006 KDDI Corporation. All Rights Reserved page3 Copyright 2006 KDDI Corporation.

More information

Copyright All Rights Reserved. -2 -!

Copyright All Rights Reserved. -2 -! http://ameblo.jp/admarketing/ Copyright All Rights Reserved. -2 -! Copyright All Rights Reserved. -3- Copyright All Rights Reserved. -4- Copyright All Rights Reserved. -5 - Copyright All Rights Reserved.

More information

0序文‐1章.indd

0序文‐1章.indd 本 書 に 記 載 されたURL 等 は 執 筆 時 点 でのものであり 予 告 なく 変 更 される 場 合 があります 本 書 の 使 用 ( 本 書 のとおりに 操 作 を 行 う 場 合 を 含 む)により 万 一 直 接 的 間 接 的 に 損 害 が 発 生 し ても 出 版 社 および 著 者 は 一 切 の 責 任 を 負 いかねますので あらかじめご 了 承 下 さい Microsoft

More information

Web 1990,HTTP, HTML, URL XML HTML XHTML XML Web XMLSOAPWSDL ( ) Web2.0 Web XML+WebAPI 2 http://www.xmlconsortium.org/ http://www.amazon.co.jp/ 3

Web 1990,HTTP, HTML, URL XML HTML XHTML XML Web XMLSOAPWSDL ( ) Web2.0 Web XML+WebAPI 2 http://www.xmlconsortium.org/ http://www.amazon.co.jp/ 3 XML Consortium XMLSOAWeb2.0 1 Web 1990,HTTP, HTML, URL XML HTML XHTML XML Web XMLSOAPWSDL ( ) Web2.0 Web XML+WebAPI 2 http://www.xmlconsortium.org/ http://www.amazon.co.jp/ 3 Web

More information

雛形ホームページ利用マニュアル

雛形ホームページ利用マニュアル ご 参 考 資 料 アカデミックサーバ 用 雛 形 ホームページ ご 利 用 ガイド < 本 ガイドのご 利 用 にあたって> アカデミックサーバ は ご 利 用 される 学 校 様 が ご 自 身 で コンテンツの 作 成 FTP によるファイル 転 送 などを 行 っていただくことが 前 提 です 従 いまして 上 記 に 関 するサポートや 本 説 明 書 の 記 載 内 容 に 関 するサポートは

More information

textbook.indd

textbook.indd 02 XHTML+CSS part2 CSS Topics 前 回 習 得 した 基 礎 CSS を 元 に ボックス CLASS ID の 概 念 を 習 得 ボックスレイアウトを 用 いた 2 カラムのサイト 構 築 をします An Introduction to Webdesign + XHTML/CSS Coding 18 01. XHTML+CSS 2 19 20 21 22 23 24

More information

Microsoft Word - 最終版 バックせどりismマニュアル .docx

Microsoft Word - 最終版 バックせどりismマニュアル .docx ism ISM ISM ISM ISM ISM ISM Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. ISM Copyright (c) 2010 All Rights Reserved. Copyright

More information

簡単なHTMLファイルを作ろう

簡単なHTMLファイルを作ろう Perl CGI 1. HTML sample1.html WWW (^^) (Paragraph) (Line brake) number

More information

untitled

untitled http://www.riskdatabank.co.jp The of Japan, Ltd. All rights reserved. 2 The of Japan, Ltd. All rights reserved. 3 The of Japan, Ltd. All rights reserved. 4 The of Japan, Ltd. All rights reserved. 5 The

More information

Microsoft Word - class_specification_guide_v60.doc

Microsoft Word - class_specification_guide_v60.doc IM-FormatCreator クラス 指 定 手 順 書 Ver 6.0 IM-FormatCreator i 1 はじめに 1 1.1 目 的 1 2 プログラムの 作 成 2 2.1 ファンクション コンテナ(.JS)の 作 成 2 2.2 プレゼンテーションページ(.HTML)の 作 成 3 3 クラス 指 定 項 目 の 設 定 5 3.1 クラス 指 定 設 定 画 面 5 3.2 クラスパス

More information

1 1 2 L A TEX 1 2.1 L A TEX................................... 1 2.2.................................... 1 3 HTML 4 3.1 HTML..........................

1 1 2 L A TEX 1 2.1 L A TEX................................... 1 2.2.................................... 1 3 HTML 4 3.1 HTML.......................... 21 2 12 4 1 1 2 L A TEX 1 2.1 L A TEX................................... 1 2.2.................................... 1 3 HTML 4 3.1 HTML.................................. 4 3.2....................................

More information

CONTENTS 0 1 2 3 4 5 6 7 8 9 10 0 viii ix x http://www.vector.co.jp/vpack/filearea/win/writing/edit/hm/index.html http://hidemaru.xaxon.co.jp/lib/macro/index.html ftp://ftp.m17n.org/pub/mule/windows/ http://www.yatex.org/

More information

dekiru_asa

dekiru_asa 11 10 4 4 1 2 3 4 2 4 6 10 12 16 20 2 1 3 1 4 2 5 2 6 3 3 7 8 9 3 3 10 4 1 11 4 2 3 4 5 1 2 3 12 4 5 5 13 14 6 7 8 9 10 11 5 15 6 1 2 3 16 17 1 2 3 6 18 1 2 3 19 6 6 1 2 v 3 20 7 1 2 3 1 7 21 22 2 3 4

More information

m_sotsuron

m_sotsuron iphone Web 0848066 1. 1 1 1 2 iphone 2 3 2 4 3 2. 3 1 3 2 iphone Web 6 3 HTML 10 4 CSS 12 5 iphone 14 6 15 7 16 8 ipad 18 3. 22 iphone Web Web 2 iphone Web iphone iphone Web iphone Web PC 1 2000 iphone

More information

untitled

untitled mitsuya Copyright (C) 2007. All Rights Reserved. 1/1 mitsuya Copyright (C) 2007. All Rights Reserved. 2/2 mitsuya Copyright (C) 2007. All Rights Reserved. 3/3 mitsuya Copyright (C) 2007. All Rights Reserved.

More information

方程式を解いてみよう! C++ から PHP + JavaScriptへ

方程式を解いてみよう! C++ から PHP + JavaScriptへ 方 程 式 を 解 いてみよう! C++ から PHP + HTML + JavaScriptへ 静 岡 理 工 科 大 学 総 合 情 報 学 部 コンピュータシステム 学 科 幸 谷 智 紀 (こうや とものり) http://na-inet.jp/ 今 日 のメニュー 1. コンピュータ 環 境 と 本 日 のゴールの 確 認 2. PHPプログラムを 実 行 してみる 3. HTMLで 自

More information

Twitter 140 140 Copyright All Rights Reserved 2

Twitter 140 140 Copyright All Rights Reserved 2 Ebook http://www.middleage.jp/twitterdoga/twitterdoga.html Ebook Twitter 140 140 Copyright All Rights Reserved 2 Copyright All Rights Reserved 3 1 http://twitter.com/ TOP Copyright All Rights Reserved

More information

L03_final.indd

L03_final.indd XHTML meta DOCTYPE XHTML XHTML XHTML XHTML XHTML a. b. c. d. XHTML Transitional 2 a. b. c. d. XHTML h1h2

More information

76

76 ! # % & % & %& %& " $ 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 % & &! & $ & " & $ & # & ' 91 92 $ % $'%! %(% " %(% # &)% & 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 !$!$ "% "%

More information