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

Size: px
Start display at page:

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

Transcription

1 Perl CGI 1. HTML sample1.html <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> </BODY> </HTML> WWW (^^) <H1> </H1> <H1> <H6> <H1> <P> </P> (Paragraph) <BR> (Line brake) <FONT size= number > </FONT> number <FONT color= color > </FONT> (Black,White,Red,Blue,Green,Yellow,Gray ) <BODY text= color > <BODY text= Red > <BODY bgcolor= color > <BODY bgcolor= Aqua > <A href= > </A> <IMG src= sample.jpg alt= >

2 . index.html <HTML> <BODY> <H1> </H1> <HR> <!--#exec cmd="./cgi-bin/count.cgi"--> </BODY> </HTML> /cgi-bin/count.cgi open(fh,"./cgi-bin/count.dat"); $cnt=<fh>; close(fh); $cnt++; print"<center> ${cnt </CENTER>"; open(fh,">./cgi-bin/count.dat"); print FH $cnt; close(fh); END.htaccess Options +Includes Options +ExecCGI AddHandler server-parsed html AddHandler cgi-script cgi

3 . Perl print ; ($ ) first.pl print " Perl!" DOS perl first.pl first2.pl # name $name = " "; print "$name n"; print " ${name n"; 3 hello.cgi # UNIX Perl # /usr/local/bin or /usr/local/bin/perl # which perl # print "Content-type: text/html n n"; # HTML # n # Content-type print "<HTML> n"; print " <BODY> n"; print " <H1> Hello!</H1> n"; print " </BODY> n"; print "</HTML> n"; perl hello.cgi > hello.html hello.html calc.pl # $x = 1;

4 $y = 2; $ans = $x + $y; print "$x $y $ans "; END if if ( ) { ; else { ; 1 ex_if.pl #if 1 $a=6; if ( $a > 5 ) { print " $a $a 5 "; else { print " $a $a 5 "; = =! = > > = < < = ex_if2.pl #if 2 #if 0 # 0 $a = 0; if ( $a ) { print " "; else {

5 print " "; for ) ex_for.pl # 1-10 for ( $i=1 ; $i<=10 ; $i++ ) { print "$i"; print " n"; # *( ) for ( $i=1 ; $i<=10 ; $i++ ) { print "*"; print " n"; ex_for2.pl = (" "," "," "); # print " $list[0] n"; $count print "$count n"; # # for ($i=0 ; $i<=$count-1 ; $i++) { print "$list[$i] n";

6 open (, ); close ( ); print ; $data = < > ex_file_write.pl # open( FH, ">test.dat"); print FH " n"; close(fh); # # # ex_file_write2.pl # open( FH, ">>test.dat"); # print FH " n"; # close(fh); # ex_file_read.pl # open( FH, "<./test.dat"); $str = <FH>; print "$str"; # # $str = <FH>; print "$str"; # close(fh); #

7 = split( / /, $str ); ex_split.pl #split $str = = split( /-/, $str); for ($i=0 ; $i $i++) { print "$list[$i] n"; ex_split2.pl #split $str = = split( //, $str); for ($i=0 ; $i $i++) { print "$list[$i] n"; foreach foreach $str ); ex_foreach.pl foreach $str (@list) { print "$str n"; printf, sprintf printf (, ); $str = sprintf (, );

8 ex_printf.pl #printf,sprintf $number = 10; printf("%9d n",$number); printf("%09d n",$number); # 9 (10 ) # 0 $number = ; printf("%9.2f n",$number); # 9, 2 $number = 123; $new_number = sprintf("%05d n",$number); print "$number $new_number n"; #

9 . GIF (CGI ) gif_counter.cgi # $DataFile="./count.dat"; #gif $dir_gif="./gif"; print "Content-type: text/html n n"; print "<HTML> n"; print " <BODY> n"; print " <H1> GIF </H1> n"; # if( open( FH, "<$DataFile" )) { $count = <FH>; close(fh); # #print "$count n"; # $count++; # $count = sprintf("%05d",$count); # foreach $number (split( //, $count )) { print "<IMG SRC= "${dir_gif /${number.gif ">"; print " n";

10 else { # if( open( FH, ">$DataFile" )) { print FH $count; close(fh); else { print " <BR> n"; print " <BR> n"; print " </BODY> n"; print "</HTML> n"; END

11 HTML HTML 1,780 HTML 1,500 CGI Perl Perl CGI 2,730 Perl CGI 3,000 Perl/CGI 2, CGI SSI Hypertext Markup Language Web ( Common Gateway Interface) CGI CGI Yahoo! CGI Server Side Include CGI HTML ( ) CGI Active Perl Perl FFftp Apache

12 /cgi-bin guest_book.html 644 guest_write.html 644 guest_write.cgi 755 guest_read.cgi 755 guest_book.dat 666 cgi-lib.pl 644 cgi

13

14 guest_book.html <HTML> <BODY> <H1><< >></H1> <H2><A HREF="guest_write.html"> </H2> <H2><A HREF="guest_read.cgi" > </H2> <BODY> </HTML> guest_write.html <HTML> <BODY> <H1> </H1> <FORM ACTION="guest_write.cgi" METHOD="POST"> <BR> <INPUT TYPE="text" SIZE=60 NAME="name"> <P> <BR> <TEXTAREA NAME="comment" cols=60 rows=8> </TEXTAREA> <P> <INPUT TYPE="submit" VALUE=" "> <INPUT TYPE="reset" VALUE=" "> </FORM> </BODY> </HTML>

15 guest_write.cgi # # $data_file = 'guest_book.dat'; # HTML print "Content-type: text/html n n"; # require 'cgi-lib.pl'; # %form &ReadParse(*form); # $name = $form{'name'; $comment = $form{'comment'; # #$name = ' '; #$comment = ' '; # if ($name eq '') { &print_error(" "); # if ($comment eq '') { &print_error(" "); #

16 $name =~ s/</</g; $comment =~ s/</</g; # if (!open(txt, "+<$data_file")) { &print_error(" "); # if (!&lock_file(txt)) { close(txt); &print_error(" "); = <TXT>; # seek(txt, 0, 0); # print TXT "<DL> n"; # print TXT "<DT> <DD>$name n"; # if ($comment ne '') { print TXT "<DT> <DD>$comment n"; # $datestr = &get_date_string; print TXT "<DT> <DD>$datestr n"; print TXT "</DL> n";

17 print TXT "<HR> n"; # # print # truncate(txt, tell(txt)); # &unlock_file(txt); # close(txt); # &page_begin(" "); &page_end; # exit(0); # # # # # &print_error(" "); sub print_error { local($msg) &page_begin($msg); &page_end; exit(0);

18 # # &page_begin(" "); sub page_begin { local ($msg) print "<HTML> n"; print "<HEAD> n"; print "<TITLE>$msg</TITLE> n"; print "</HEAD> n"; print "$bodytag n"; print "<H1>$msg</H1> n"; # sub page_end { print "<HR> n"; print "<A HREF=guest_book.html> </A> n"; print "<HR> n"; print "</BODY> n"; print "</HTML> n"; # sub get_date_string { local($sec, $min, $hour, $day, $mon, $year); ( $sec, $min, $hour, $day, $mon, $year ) = localtime(time); $year += 1900; $mon++; # if ($hour < 10) { $hour = "0$hour"; if ($min < 10) { $min = "0$min";

19 if ($sec < 10) { $sec = "0$sec"; return "$year $mon $day $hour $min $sec "; # sub lock_file { local(*file) if ($uselock) { eval("flock(file, 2)"); # 2=LOCK_EX if ($@){ # flock return 0; return 1; # sub unlock_file { local(*file) if ($uselock) { eval("flock(file, 8)"); # 8=LOCK_UN

20 guest_read.cgi # # # $data_file = 'guest_book.dat'; # print "Content-type: text/html n n"; # if (!open(txt, "$data_file")) { &print_error(" "); else { &page_begin(" "); print "<HR> n"; # while (<TXT>) { print; &page_end; # close(txt); # exit(0); # # #

21 # # &print_error(" "); sub print_error { local($msg) &page_begin($msg); &page_end; exit(0); # # &page_begin(" "); sub page_begin { local ($msg) print "<HTML> n"; print "<HEAD> n"; print "<TITLE>$msg</TITLE> n"; print "</HEAD> n"; print "$bodytag n"; print "<H1>$msg</H1> n"; # sub page_end { print "<HR> n"; print "<A HREF=guest_book.html> </A> n"; print "<HR> n"; print "</BODY> n"; print "</HTML> n";

(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

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV [email protected] [email protected] http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 11 20 p.1/34 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

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

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

オンラインテスト

オンラインテスト 1. 2. JavaScript 3. Perl 4. CGI 1. WWW HTML WWW World Wide Web HTML Hyper Text Markup Language XML, XHTML Java (.java) JavaApplet (.class,.jar) JavaServlet (.jsp) JavaScript (.html) CGI (.cgi) SSI (.shtml)

More information

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

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

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 1. 1 AWK HTML 18 8 14 1 HTML Yahoo! 3 Yahoo! (http://www.yahoo.co.jp/) 1 Yahoo! : http://headlines.yahoo.co.jp/hl ( ) ( ) Netscape 3.04 1. 2 Netscape 3.04 2. 1 Yahoo! 2. HTML 2 3. 1 1 100 6 4. csh AWK

More information

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

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

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

コンピュータサイエンス 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. 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

PowerPoint プレゼンテーション

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

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

サーバサイドスクリプトPHPを実感しよう

サーバサイドスクリプトPHPを実感しよう 第 3 講 サーバサイドスクリプト PHP を 実 感 しよう! クライアントサイドでは HTML に 埋 め 込 んだ(あるいは 別 ファイルから HTML に 読 み 込 まれた)JavaScript によって さまざまな 処 理 や 動 的 ページの 生 成 を 行 えることは すで に 第 3 講 までで 学 習 しました しかし HTML と JavaScript の 組 合 せではどうしても

More information

1 1.1 CGI CGI(Common Gateway Interface) CGI CGI CGI Perl Ruby CGI HTML Ruby 2 CGI ( ) HTTP(Hypertext Transfer Protocol) httpd UNIX OS Apache Apache Ap

1 1.1 CGI CGI(Common Gateway Interface) CGI CGI CGI Perl Ruby CGI HTML Ruby 2 CGI ( ) HTTP(Hypertext Transfer Protocol) httpd UNIX OS Apache Apache Ap 20 12 19 CGI CGI CGI 1 2 1.1 CGI............................................ 2 2 2 3 CGI 2 3.1.......................................... 2 3.2 CGI.......................................... 3 3.3........................................

More information

HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2

HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2 HTTP 6-1 HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2 HTTP ( ) ( ) (GET, POST ) (Host ) Tomcat Servlet Examples / Request Headers ( ) (200, 404 ) (Content-Type ) 6-3

More information

スマートアヴェニュー ご利用マニュアル CGI編

スマートアヴェニュー ご利用マニュアル CGI編 CGI CGI SSI smartavenue CGI SSI CGI SSI CGI CGI CGI HTML CGI perl C 3 C CGI Linux CGI perl sendmail uuencode uudecode nkf /usr/bin/perl /usr/local/bin/perl /usr/lib/sendmail /usr/bin/uuencode /usr/bin/uudecode

More information

1 1 3 1.1 Web............................ 3 1.2 Servlet/JSP.................................. 3 2 JSP 7 2.1................................... 7 2.2..

1 1 3 1.1 Web............................ 3 1.2 Servlet/JSP.................................. 3 2 JSP 7 2.1................................... 7 2.2.. Servlet/JSP 1 1 3 1.1 Web............................ 3 1.2 Servlet/JSP.................................. 3 2 JSP 7 2.1................................... 7 2.2........................................

More information

講 義 内 容 前 回 の 提 出 課 題 の 解 答 例 復 習 データを 送 信 するための HTML (フォーム) PHPによるフォームデータの 処 理 2

講 義 内 容 前 回 の 提 出 課 題 の 解 答 例 復 習 データを 送 信 するための HTML (フォーム) PHPによるフォームデータの 処 理 2 2015 年 度 Webシステムプログラミング a PHPの 基 礎 (2) 講 義 内 容 前 回 の 提 出 課 題 の 解 答 例 復 習 データを 送 信 するための HTML (フォーム) PHPによるフォームデータの 処 理 2 ( 前 回 ) 提 出 課 題 課 題 1: 1から100までの 乱 数 で 作 成 した2つの 整 数 の 足 し 算 を 表 示 するWebページを 作 成

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

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

11

11 ( 40 ) 1 ipad ) LAN (Local Area Network) WAN (Wide Area Network) 2 TCP/IP 3 LAN LAN EMOBILE WiMAX WILLCOM ) 4 ( www(world wide web,) ) 5 6 7 8 9 10 index.html Web IE, FireFox, Safari ( ) 11 IP IP xx.xx.xx.xx

More information

0序文‐1章.indd

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

More information

橡Taro9-生徒の活動.PDF

橡Taro9-生徒の活動.PDF 3 1 4 1 20 30 2 2 3-1- 1 2-2- -3- 18 1200 1 4-4- -5- 15 5 25 5-6- 1 4 2 1 10 20 2 3-7- 1 2 3 150 431 338-8- 2 3 100 4 5 6 7 1-9- 1291-10 - -11 - 10 1 35 2 3 1866 68 4 1871 1873 5 6-12 - 1 2 3 4 1 4-13

More information

インターネットマガジン1996年3月号―INTERNET magazine No.14

インターネットマガジン1996年3月号―INTERNET magazine No.14 Common Gateway Interface +SSI j 164 INTERNET magazine 1996/3 INTERNET magazine 1996/3 165 Common Gateway Interface 5 2 3 1 2 3 4 1 4 j Common Gateway Interface j j j j 166 INTERNET magazine 1996/3 INTERNET

More information

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

More information

Apache on CLUSTERPRO for Linux HOWTO

Apache on CLUSTERPRO for Linux HOWTO Apache on CLUSTERPRO for Linux HOWTO 1 はじめに この 文 章 は Linuxの 標 準 HTTPサーバであるApacheとCLUSTERPRO for Linuxを 組 み 合 わせてフェイル オーバクラスタを 構 成 するのに 必 要 な 情 報 を 記 述 したものです HTTPサーバをフェイルオーバクラスタ 化 す ることにより 単 一 Linuxサーバでは

More information

ビジネスホームページご利用ガイド

ビジネスホームページご利用ガイド ご 参 考 資 料 ビジネスホームページ ご 利 用 ガイド < 本 ガイドのご 利 用 にあたって> ビジネスホームページ は ご 利 用 される 法 人 様 がご 自 身 で コンテンツの 作 成 FTP によるファイル 転 送 などを 行 っていただくことが 前 提 です 従 いまして 上 記 に 関 するサポートや 本 説 明 書 の 記 載 内 容 に 関 するサポートは 弊 社 では 致

More information

スライド 1

スライド 1 第 7 講 観 光 情 報 論 2008 年 6 月 4 日 Style Sheet (CSS) 宮 国 薫 子 1 スタイルシート (CSS) CSSとは(Cascading Style Sheets) 本 来 ホームページにデザインを 加 える 機 能 の すべて 教 科 書 で 言 う スタイルシート とはCSSのことを 指 す CSSを 使 うと Page 106 にあるようにホーム ページの

More information

Microsoft PowerPoint - 051105-2.ppt

Microsoft PowerPoint - 051105-2.ppt 1.Webアプリケーション 1-1 Web 1989Tim Berners-Lee 1993 1999iWindows98 2005: http://www.w3.org/people/berners-lee/ 1-2 ( ) 汎 用 機 オフコン データベース アプリケーション 言 語 (COBOLなど) 文 字 端 末 タイプライター 端 末 http://research.microsoft.com/~gbell/digital/timeline/dechistory.htm

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

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

untitled

untitled 2005 HP -1-2005 8 29 30 HP 1 ( ) 1. Web 2. HTML HTML 1 PDF HTML 1 Web HTML http://www.media.ritsumei.ac.jp/kodais2005 2 2.1 WWW HTML Hyper Text Markup Language) HTML Web HTML Internet Explorer http://www.ritsumei.ac.jp

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

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ HTTP/2 HTTP/1.1 (1999 ) 2015 5 RFC7540! Google SPDY ( ) 1 TCP TCP TLS HTTP Upgrade HTTP 1 HPACK 1 / 24 3 : HTTP : HTML4 2 / 24 testform.html: POST testform2.html: GET iedemo: IE default.css: CSS proxy.pac:

More information

スライド 1

スライド 1 Webプログラミング2 2.Webプログラミング 概 要 (2) ( 復 習 )Webとは 様 々な 利 用 シーン 様 々なデバイス/ブラウザ パソコン 携 帯 電 話 ゲーム 機 /TV 電 子 ブックリーダー 学 校 案 内 / 会 社 案 内 オンラインショップ ブログ/ 掲 示 板 /SNS/Twitter/Facebook 学 内 / 社 内 システム スケジューラ/カレンダー/Webメール

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

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

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

untitled

untitled 750 841 Webserver 1.0.0 ii General Copyright 2003 by WAGO Kontakttechnik GmbH All rights reserved. 136-0071 1-5-7 ND TEL 03-5627-2059 FAX 03-5627-2055 WAGO Kontakttechnik GmbH Hansastraße 27 D-32423 Minden

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

html ソース <HTML> <HEAD> <META charset="cp932" /> <TITLE>MPC 通 信 サンプル</TITLE> <SCRIPT src="http://code.jquery.com/jquery-1.11.1.min.js"></script> <SCRIP

html ソース <HTML> <HEAD> <META charset=cp932 /> <TITLE>MPC 通 信 サンプル</TITLE> <SCRIPT src=http://code.jquery.com/jquery-1.11.1.min.js></script> <SCRIP テーマ Application Note Ref No: an2k-050 Last Modify 160428 Raspberry Pi でネットワークにアクセスする 使 用 機 器 MPC-2000 シリーズ, USB-RS,Raspberry Pi2 イメージ 名 刺 サイズのコンピュータ Raspberry Pi に Web サーバーを 乗 せて MPC の 状 態 を 取 得 変 更 します

More information

1 print "\r\n"; 2 print " $author\r\n"; 3 print " Web"; 4 print "$url\r\n"; 5 print " $message\r\n";

More information

Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 3 Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved.

Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 3 Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 2006 12 14 Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 2 Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 3 Copyright 2006 Mitsui Bussan Secure Directions,

More information

1 ARENA DNS CSR ID ( ).. I 3-1 3-1

1 ARENA DNS CSR ID ( ).. I 3-1 3-1 . II NTTPC 1 ARENA DNS CSR ID ( ).. I 3-1 3-1 30 http://web.arena.ne.jp/suite/support/startup/admin-useradd/index.html 31 32 33 34 http://web.arena.ne.jp/suite/cgiinstaller/index.html 35 36 CGI 37 CGI

More information

1 1 1............................ 1 2 jquery........................ 2 3................ 3 4................... 3 2 4 1..............................

1 1 1............................ 1 2 jquery........................ 2 3................ 3 4................... 3 2 4 1.............................. 1 1 1............................ 1 2 jquery........................ 2 3................ 3 4................... 3 2 4 1.............................. 4 2.............................. 6 3...........................

More information

祝 1.0 を 2010 年 4 月 にリリース

祝 1.0 を 2010 年 4 月 にリリース - IronRuby の 活 用 - 祝 1.0 を 2010 年 4 月 にリリース hello Active Script Ruby @doc = @window.document おもしろい def click(btn) @doc.all(btn).value = btn + " is

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