-
Notifications
You must be signed in to change notification settings - Fork 0
/
lesson0_basic.html
105 lines (89 loc) · 4.1 KB
/
lesson0_basic.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--[if lt IE 7 ]><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr" xmlns:og="http://ogp.me/ns#" xmlns:mixi="http://mixi-platform.com/ns#" xmlns:fb="http://www.facebook.com/2008/fbml" class="ie6"><![endif]-->
<!--[if IE 7 ]><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr" xmlns:og="http://ogp.me/ns#" xmlns:mixi="http://mixi-platform.com/ns#" xmlns:fb="http://www.facebook.com/2008/fbml" class="ie7"><![endif]-->
<!--[if IE 8 ]><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr" xmlns:og="http://ogp.me/ns#" xmlns:mixi="http://mixi-platform.com/ns#" xmlns:fb="http://www.facebook.com/2008/fbml" class="ie8"><![endif]-->
<!--[if IE 9 ]><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr" xmlns:og="http://ogp.me/ns#" xmlns:mixi="http://mixi-platform.com/ns#" xmlns:fb="http://www.facebook.com/2008/fbml" class="ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr" xmlns:og="http://ogp.me/ns#" xmlns:mixi="http://mixi-platform.com/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"><!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="ja" />
<title>##### PAGE NAME ##### | ##### CATEGORY NAME ##### | ##### SITE NAME #####</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<!-- Optional Meta Informations -->
<meta name="author" content="*** Author ***" />
<meta name="copyright" content="©*** Copyright ***" />
<meta name="reply-to" content="example@example.com" />
<link rel="start" href="/" title="Home" />
<!-- /Optional Meta Informations -->
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" href="/css/common.css" media="screen, print" />
<link rel="stylesheet" type="text/css" href="/css/layout.css" media="screen, print" />
<link rel="stylesheet" type="text/css" href="/css/print.css" media="print" />
</head>
<body>
<div id="container">
<!-- [[[ HEADER-AREA ]]] -->
<div id="header">
<h1><a href="/">HTML Lesson 0 : 超基礎</a></h1>
<ul id="navSkip" class="hidden">
<li><a href="#content">本文へ</a></li>
<li><a href="#navGlobal">メインメニューへ</a></li>
</ul>
<!-- / #header --></div>
<!-- / [[[ HEADER-AREA ]]] -->
<!-- [[[ CONTENT-AREA ]]] -->
<div id="content">
<p>通信の基礎</p>
<dl>
<dt><a href="http://ja.wikipedia.org/wiki/REST">REST</a></dt>
<dd>
<ul>
<li>GET</li>
<li>POST</li>
<li>PUT</li>
<li>DELETE</li>
</ul>
</dd>
</dl>
<p>リクエストとレスポンス</p>
<p>ブラウザが表示するまでのながれ</p>
<ol>
<li>リクエストなげる</li>
<li>サーバーが処理する</li>
<li>レスポンスが返ってくる</li>
<li>HTMLをロードする</li>
<li>CSSをロードする</li>
<li>Jsをロードする</li>
<li>描画する</li>
<li>window.onload</li>
</ol>
<p class="goPageTop"><a href="#container">ページの先頭へ戻る</a></p>
<!-- / #content --></div>
<!-- / [[[ CONTENT-AREA ]]] -->
<!-- [[[ FOOTER-AREA ]]] -->
<!-- / #footer --></div>
<!-- / [[[ FOOTER-AREA ]]] -->
<!-- / #container --></div>
<!-- [ SCRIPTS ] -->
<script src="/js/lib/LAB.min.js" type="text/javascript"></script>
<script type="text/javascript">
// Setting.
// Load scripts.
$LAB.script('/js/lib/jquery.1.6.1.js').wait()
.script(['/js/lib/meca.js'/*,'/js/lib/swfobject.js'*/]).wait()
.script('/js//common.js')
/*
.wait(function() {
})
//*/
;// End of Script
</script>
<noscript><p id="msgNoscript">当サイトは、ブラウザのJavaScript設定を有効にしてご覧ください。</p></noscript>
<!-- / [ SCRIPTS ] -->
<!-- [ ANALYSIS ] -->
<!-- / [ ANALYSIS ] -->
</body>
</html>