-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathHTML-introduction-ja.html
4080 lines (3748 loc) · 145 KB
/
HTML-introduction-ja.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="ja"><head><meta charset="utf-8">
<title>HTML Standard — Introduction(日本語訳)</title>
<link rel="stylesheet" href="common.css" type="text/css">
<link rel="stylesheet" href="common-whatwg.css" type="text/css">
<style>
#abstractimg {
display: grid;
gap: 5px;
grid-template-columns: 67px 326px;
grid-template-rows: 80px 177px 92px;
}
#abstractimg > div {
color: white;
display: flex;
background: #424242;
padding: 10px;
justify-content: center;
text-align: center;
align-items: center;
}
.domTree li {
margin-top: 0;
margin-bottom: 0;
list-style-type: none;
font-family: monospace0, monospace;
}
.domTree li::before {
content: "└ ";
}
.domTree ul {
padding-left: 2em;
}
dd > blockquote {
margin-left:0;
}
</style>
<script src="common0.js" ></script>
<script src="common1.js" async></script>
<script>
Util.ready = function(){
const source_data = {
toc_main: 'introduction',
generate: expand,
};
Util.switchWordsInit(source_data);
}
function expand(){
const class_map = this.class_map;
const tag_map = this.tag_map;
const link_map = this.link_map;
return this.html.replace(
/%[\w\-~一-鿆あ-ん]+|`(.+?)([$@\^])(\w*)/g,
create_html
);
function create_html(match, key, indicator, klass){
if(!key) {//%
return `<var>${match.slice(1)}</var>`;
}
let href = '';
let href1 = '';
{
const n = key.indexOf('@');
if(n > 0) {
href1 = key.slice(n + 1);
key = key.slice(0, n);
}
}
let text = key;
switch(klass){
case 'r':
text = `[${key}]`;
href = `HTML-references.html#refs${key}`;
break;
case 'l':
text = `"<code class="literal">${text}</code>"`;
break;
case 'U':
text = `U+${key}`;
break;
case 'xCode':
return `<a id="_ex-html-${key}">*</a>`;
break;
case 'en':
return `<span lang="en">${key}</span>`;
break;
}
let tag = tag_map[klass];
if(tag) {
let classname = class_map[klass];
classname = classname ? ` class="${classname}"` : '';
text = `<${tag}${classname}>${text}</${tag}>`;
}
if(indicator !== '^'){
href = href1 || link_map[ klass ? `${klass}.${key}` : key ] || href;
if(!href){
console.log(match); // check error
return match;
}
switch(indicator){
case '$':
text = `<a href="${href}">${text}</a>`;
break;
case '@':
text = `<dfn id="${href.slice(1)}">${text}</dfn>`;
break;
}
}
return text;
}
}
</script>
<script type="text/plain" id="_source_data">
●●options
spec_date:2025-03-14
trans_update:2023-05-06
source_checked:210303
page_state_key:HTML
spec_status:LS
original_url:https://html.spec.whatwg.org/multipage/introduction.html
abbr_url:
nav_next:HTMLINFRA
trans_1st_pub:2021-03-03
●●class_map
e:element
a:attr
p:property
v:value
h:header
et:event-type
E:error
U:code-point
cn:cp-name
sc:scheme
css:css
●●tag_map
I:code
m:code
E:code
c:code
e:code
a:code
p:code
v:code
et:code
h:code
dfn:dfn
i:i
U:span
cn:span
sc:code
css:code
em:em
cite:cite
●●original_urls
●●original_id_map
●●link_map
●idl
I.EventSource:~HTMLsse#eventsource
I.SharedArrayBuffer:~TC39#sec-sharedarraybuffer-objects
I.Text:~DOM4#interface-text
#text:~DOM4#interface-text
I.Worker:~WORKERS#worker
I.DocumentType:~DOM4#interface-documenttype
I.Element:~DOM4#interface-element
I.Comment:~DOM4#interface-comment
#comment:~DOM4#interface-comment
I.ProcessingInstruction:~DOM4#interface-processinginstruction
m.document:~WINDOW#dom-window-document
m.document:~HTMLdom#document
m.top:~WINDOW#dom-window-top
m.forms:~HTMLdom#dom-document-forms
m.links:~HTMLdom#dom-document-links
m.value:~HEforms#dom-output-value
m.elements:~HEforms#dom-form-elements
m.onload:~WAPI#handler-onload
m.href:~HTMLlinks#dom-hyperlink-href
m.protocol:~HTMLlinks#dom-hyperlink-protocol
m.window:~WINDOW#dom-window-window
●element
e.a:~HEtextlevel#the-a-element
e.area:~HEimages#the-area-element
e.b:~HEtextlevel#the-b-element
e.base:~HEmetadata#the-base-element
e.body:~HEsections#the-body-element
e.button:~HEforms#the-button-element
e.div:~HEgrouping#the-div-element
e.form:~HEforms#the-form-element
e.h6:~HEsections#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements
e.h1:~HEsections#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements
e.h2:~HEsections#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements
e.head:~HEmetadata#the-head-element
e.hr:~HEgrouping#the-hr-element
e.html:~HEmetadata#the-html-element
e.i:~HEtextlevel#the-i-element
e.iframe:~HEembed#the-iframe-element
e.img:~HEimages#the-img-element
e.kbd:~HEtextlevel#the-kbd-element
e.li:~HEgrouping#the-li-element
e.meta:~HEmetadata#the-meta-element
e.noscript:~HEscripting#the-noscript-element
e.output:~HEforms#the-output-element
e.p:~HEgrouping#the-p-element
e.s:~HEtextlevel#the-s-element
e.script:~HEscripting#the-script-element
e.section:~HEsections#the-section-element
e.small:~HEtextlevel#the-small-element
e.span:~HEtextlevel#the-span-element
e.style:~HEmetadata#the-style-element
e.table:~HEtables#the-table-element
e.textarea:~HEforms#the-textarea-element
e.title:~HEmetadata#the-title-element
e.u:~HEtextlevel#the-u-element
e.ul:~HEgrouping#the-ul-element
●attr
a.data-*:~HTMLdom#attr-data-*
a.src:~HEscripting#attr-script-src
a.style:~HTMLdom#attr-style
a.shape:~HEimages#attr-area-shape
a.target:~HTMLlinks#attr-hyperlink-target
a.class:~HTMLdom#classes
a.disabled:~HTMLforms#attr-fe-disabled
a.href:~HTMLlinks#attr-hyperlink-href
a.id:~HTMLdom#the-id-attribute
a.lang:~HTMLdom#attr-lang
a.rel:~HTMLlinks#attr-hyperlink-rel
a.itemscope:~HTMLLS/microdata.html#attr-itemscope
a.itemprop:~HTMLLS/microdata.html#names:-the-itemprop-attribute
a.name:~HTMLforms#attr-fe-name
a.~name0:~HEforms#attr-form-name
●keywords, etc.
h.Origin:~FETCH#http-origin
v.circ:~HEimages#attr-area-shape-keyword-circ
v.circle:~HEimages#attr-area-shape-keyword-circle
c.text/html:~HTMLiana#text/html
c.application/xhtml+xml:~HTMLiana#application/xhtml+xml
et.load:~HTMLindex#event-load
●
#_this-0
a.this:#_this-1
e.this:#_this-2
m.this:#_this-3
_this-0:x-this
_this-1:x-that
_this-2:x-that
_this-3:x-that
●HTML
妥当な整数:~HTMLcms#valid-integer
整数として構文解析する:~HTMLcms#rules-for-parsing-integers
妥当な媒体~query~list:~HTMLcms#valid-media-query-list
句ng内容:~HTMLdom#phrasing-content-2
対話的~内容:~HTMLdom#interactive-content-2
段落:~HTMLdom#paragraph
~hyperlink:~HTMLlinks#hyperlink
定義済みな~link型の集合に対する拡張:~HTMLlinks#concept-rel-extensions
~custom要素:~HEcustom#custom-element
妥当な~custom要素~名:~HEcustom#valid-custom-element-name
~script:~WAPI#concept-script
~event~handler内容~属性:~WAPI#event-handler-content-attributes
同期区間:~WAPI#synchronous-section
~worker:~WORKERS#workers
~DOCTYPE:~HTMLwriting#syntax-doctype
属性:~HTMLwriting#syntax-attributes
属性~名:~HTMLwriting#syntax-attribute-name
属性~値:~HTMLwriting#syntax-attribute-value
終了~tag:~HTMLwriting#syntax-end-tag
開始~tag:~HTMLwriting#syntax-start-tag
構文解析-~error:~HTMLparsing#parse-errors
有名~文字~参照:~HTMLcharrefs#named-character-references
●他
故意的な違反:~INFRA#willful-violation
文書~要素:~DOM4#document-element
過去互換なし~mode:~DOM4#concept-document-no-quirks
過去互換~mode:~DOM4#concept-document-quirks
~ASCII空白:~INFRA#ascii-whitespace
~MIME型:~MIMESNIFF#mime-type
~XML~MIME型:~MIMESNIFF#xml-mime-type
~agent:~TC39#sec-agents
塊~box:~CSSDISP#block-box
行内~box:~CSSDISP#inline-box
~CSSWG/css2/#block-boxes%E2%91%A0
~CSSWG/css2/#inline-box
~TR/xml/#sec-lang-tag
https://spec.whatwg.org/
https://whatwg.org/validator/
https://www.w3.org/blog/news/archives/7753
●●words_table1
HTMLcharrefs:HTML-charrefs-ja.html
name0:name
●●words_table
●略称
HTML5:
WHATWG:
CPU:
CERN:
IETF:
HTML4:
RSS:
Atom:
Apple:
XHTML1:
DOM2:
WorldWide
Opera:
Software:
workshop:
Mozilla:
XHTML:
XHTML2:
Level:
WCAG:
DOCTYPE:
UTF-7:
非~支援~技術:non-AT
ARIA:
SQL:
DOM/^en:Document Object Model
MathML:
^en:Server Sent Events
^en:Web Sockets
^en:World Wide Web
●処理
生産:production::~
生産器:producer::~
消費器:consumer::~
回復:recovery::~
遭遇-:encounter:~
同期区間:synchronous section::~
multithreading::::マルチスレッド処理
main::::メイン
background::::バックグラウンド
statement::::ステートメント
process::::プロセス
増分的:incremental:~
静止-:pause:~
競争:race:~
休んでいる:taking a break
為す:makeする:~
為した:makeした:~
為され:makeされ:~
為せ:makeでき:~
捕える:catchする:~
捕えれ:catchでき:~
同時的:simultaneous:同時
型強制-:coerce:~
型強制-:coercion
黙って:silentに:~
稼働-:run:~
~memory内:in-memory
休んでいる:taking a break
中断されずに:uninterrupted
見逃す:miss:/:not see
完了まで走る:run-to-completion
●構文/形式
内包-:include:~
ampersand::::アンパサンド
改行:line break::~
英字:letter::~
内包-:include:~
infoset:
生の:rawな:~
成分:part
引用符~無し:unquoted
引用符で括って:quote
引用符( `"^c / `'^c ):single or double quotes
括る/quote
引用符:quote character
整数を表さない文字列:non-numeric
●UI/呈示
radio::::ラジオ
drag-and-drop::::ドラッグ&ドロップ
合成器:synthesizer::~
●privacy/保安
CSRF:
~CSRF:(^en:cross-site request forgery
XSS:
~XSS:(^en:cross-site scripting
騙した:trickした:~
騙す:trickする:~
騙そう:trickしよう:~
騙され:trickされ:~
晒す:exposeする:~
晒し:exposeし:~
善意的:benign:~
弱体化-:compromise::~
陥穽:pitfall:落とし穴
細工-:craft:~
被害者:victim:~
無害:harmless:~
乗取られ:hijackされ:乗っ取られ
乗取り:hijacking:乗っ取り
索:tack:~
(策ではない)
秘密な:hidden:~
阻止-~list:blocklist
~clickの乗取り:clickjacking
仕向けた:convince
信用できない:untrusted
安全~list/安全~listに基づく:safelist
許容しない:disallow
餌食に:falling prey
●仕様/適合
デタラメ:bogus:~
不便:inconvenient:~
疑な:dubiousな:疑わしい
偶発的:accidental:~
冗長:redundant:~
包括的:comprehensive:~
協同-:collaborate:~
参加-:participate:~
収まる:fitする:~
各個人:individuals:~
同義語:synonym:~
土台:underpinning:~
壊滅的:catastrophic:~
奇妙:bizarre:~
学習-:learn:~
学習:learning:~
完全さ:completeness:~
定式化-:formulate:~
定式化し直す:reformulation
対象読者:audience:~
導入:introduction:~
微妙:subtle:~
採決-:vote:~
支援:assistive:~
改正-:amend:~
新参の:noviceな:~
旗印:banner:~
明快さ:clarity:~
本物の:realな:~
次世代の:next generation:~
正しさ:correctness:~
正せる:correctできる:~
注目:attention:~
浪費-:waste:~
深刻:serious:~
濫用-:abuse:~
犠牲に:sacrifice:~
独特:unique:~
発展-:evoluve:~
発展ng:evolving:発展
発展:evolution:~
発生-:arise:~
矛盾:contradiction:~
移行-:migrate:~
節約-:save:~
素材:material:~
結論:conclusion:~
著作権:copyright:~
複雑な:complicatedな:~
複雑化:complication:~
設立:creation:~
証左:proof:~
試作:prototyping:~
誤記:typo:~
請求-:solicite:~
論題:topic:~
費やす:spendする:~
過ち:mistake:~
関心:interest:~
障壁:barrier:~
順応-:adapt:~
意味論-:semantic-:~
悲惨:disastrous:~
風変わり:eccentric:~
誤解-:misunderstand:~
癖:peculiaritie:~
間違った:wrongな:~
実利的:pragmatic:~
本番:production:~
迅速:rapid:~
優先度:priority:~
署名-:sign:~
発表-:announce:~
buzzword::::バズワード
黙示-:imply:~
競合:conflict:~
programmer::::プログラマー
analyst::::アナリスト
強化-:reinforce:~
促進-:promote:~
教える:teachする:~
余計:extra:~
種類:kind:~
注記:note:~
staff::::スタッフ
会員:membership::~
合意:agreement:~
公認な:chartered:~
venue:::場
絶対要件:imperative:~
reverse-engineer:reverse engineer
reverse-engineering
考案-:invent:~
明白:obvious:~
許諾条項:license:~
意見:input:~
触れら:touchさ:~
法制上の:de-jureな:~
事実上の:de-factoな:~
問題m:matter:問題
〜が問うもの:what matters for
簡易:quick:~
普遍的:universal:~
具体化-:manifest:~
警告:warning:~
惑わす:confuseする:~
混乱:confusion:~
無分別:nonsensical:~
イミを成さない:nonsensical
研究:study:~
研究-:study:~
句-:phrase:~
拡げる:expand:~
拡げるため:expansion
提示-:present:~
人々:people:~
他者:other people
公表され:publication
取っ付き易い:approachable
~debugし難くなる方へ陥れる:result in 〜 failing in hard-to-debug ways
~debugし難く:hard to debug
~errorを取扱う挙動:error-handling behavior
~~位置付けられ:positioned
表記-:denote
~~表記上の:typographic
~~関係ない:have no bearing
〜適さない:not suited to
きちんと:well
きちんと定義され:well-defined
この規範:the norm
すべてではないが:though by no means
ずっと:much more
そのとおり:yes
とされる:marked
とする:suppose
ないものもある:not all of
なくとも済むよう:allow 〜 without having to
の~~寛容さを用立てることで短く記せる〜:of terseness afforded by making use of the flexibility
のみならず:not just
はず:should
はまる:run into
ひどく:disproportionately
まず見込まれない:highly-unlikely
好む:like
まったく:completely
まったく:entirely
を土壌に~~背景に:on the grounds
上で言及した~aforementioned
下位節:subsections#1
下火に:petered out
並行して:in parallel with
事実、/~~実際には:in fact
互いに隔絶されるもの:exist in a vacuum
他に比して:relatively
傘:umbrella
傾向にある:tend
優しい:gentler
全編を通して:cover-to-cover
冒頭:at the top of
劣化させ:poor
拙くなる:leads to poorer
招く:lead
至らす:lead
役立つ:helpful
助けに:help
原因:cause
アリ性:possibility
各所で:in places
呼び起こした:spark
場を占める:takes place
大きな~~特徴を成す:large signature
実を結ばなかった:abortive
崩れ易い:fragile
引く:draw
影響されない:unaffected
意図的でなく:unintentionally
捉えれる:can be thought
文書化されていない:undocumented
明確に:emphatically
書かれる:written
書き方:writing
書くとき:writing
楽にする:make easier
次第に増えて:progressively more
残した:in a
無数の:myriad
無為に:for naught
理解すること:understanding
生きた標準(^en:Living Standard
生まれた:borne
留意-:reminded
略して:for short
直感に反する:unintuitive
真っ先に挙がる~most~prominent
矢継ぎ早に:quickly followed later
知らないうちに:unknowingly
短く言えば、:in short
積み重ね:stack
簡潔さ:brevity
素早く:quickly
結局:after all
総括-:be best summed up
脱却し易く:help authors move away
良いもの~good
見込みが高い:likely
見込みを抑える:less likely
何か:area
許容されない:disallowed
詳しく言えば、:in more length
認めざるを得ない:must be admitted
誤った利用:misuse
読み物~reading
込み入った:convoluted
追いながら:follow
通例的でない:unusual
道を譲った:made way
選ばれ:chosen
選んだ:choosing
馴染んで:familiarity
驚くほどのものではないはず:should not come as a surprise
あり得る:potential
用心されたし:cautioned
単に:merely
必要に迫られ、:by necessity
気付かず:realizing
気付き:realization
課す:place
指す:refer
~~新たな:renewed
共同で:jointly
処する:deal with
初見では 〜 見える:at first-glance 〜 appear
用を成す:be of use
互換でない:incompatible
完成した:finish
このことから、This is why
呼んだ:calling
経て:went through
至った:came
進む:going
進んで:went
表現-不能な:un-representable
称され:referred
始めた:begin
頂点に至った:culminating in
減らす:help reduce the number of
される限り:so long as
転換-:turn/:turned into/:turning into
必要がある:have to
必要なく:having to
方へ陥れる:result in 〜 failing 〜 ways
課され:impose
誤った利用:mis-use
検証しないとき:not validating
つなぎ:transitionary step
立ち~~位置:place
し続ける:keep
保ち:keep
引き継いで:continuing
し続ける:continuing
されなくする:will prevent
外見上は:appearance
にもかかわらず:despite
しそうだが:despite
~~選択:choice
~~観点:In terms of
~~見かけ以上に:than one would initially expect
目次:contents list
~~規定-:lays out
読む:read
選び取って:picking
見かけ:look
見る:look at
調べて:looked at
対応して:correspondingly
見える:seeming
場合、〜になる:there's a chance that the 〜 leading it to be
~~実際:indeed
招く:lead
~~理由にある:why
-:in fact
ようになる/結果になる/ことになる:end up
差し支えない:ok
~module化:Modularization
~~下層にある:underlie
●例
online::::オンライン
offline::::オフライン
game::::ゲーム
open:
~game:reaction game
多人数:multiplayer::~::マルチプレイヤー
購入ng:purchasing:購入
購入n:purchase:購入
電話:telephone:~
帳:book:~
email::::メール
mailing::::メーリング
編集用:editing:~
workstation::::ワークステーション
instant-messaging:instant messaging:::インスタントメッセージング
協議:discussion:~
forum::::フォーラム
投稿-:post:~
入場許可証:passport::~::パスポート
tutorial::::チュートリアル
打込んだ:typeした:打ち込んだ
display::::ディスプレイ
電子商取引店舗:e-commerce shop::~
^en:syndication:
高性能:high-end
低性能な~CPU:low CPU requirements
^en:contact information
^en:calendar event
^en:licensing works
背景色は `navy^v, 前景色は `yellow^v に:yellow-on-blue
~code片/片:fragment
~code片:snippet
遊び:play
`iframe^e:iframe
~text~mode:text-mode
~UIkeyで~~入力:keyed in
●未分類
句ng:phrasing::句
科学-:scientific:~
agent:
microformat:
microdata:
~microdata:Microdata
prototype:
障害:disabilities:~
低視力:blindness and low vision:~
難聴:deafness and hearing loss:~
光感受性:photosensitivity:~
身体動作:movement:~
認知:cognitive:~
発話:speech:~
年齢:age:~
書記体系:writing system::~
点字:braille:~
双路:two-way::~
全二重:full-duplex::~
再生:playback::~
字幕:subtitle::~
socket::::ソケット
機械:machine:~
機械で:machine-
世界:world:~
製品:product:~
索引:index:~
worklet:
section:
見出し:heading::~
2D:
graphics::::グラフィックス
分割0:divide:分割
後続に:subsequentに:後続して
大域~obj:globals
探し出して:look for
~serverから~pushされる:server-push
-:leading
閉じられ:closed
閉じられていない:unclosed
それを閉じる:closing
~~再開-:reopen
~script用の:scripting
現れる:appearする
現れな:appearしな
~prototype法:prototyping
直列化-能:serializability
名前, 値 が成す:name-value
^cite:HTML4 Transitional
~streamしている:streaming
-:worth noting
重複-:duplicate
置く:put
●指示語
連続する:consecutiveな:~
相互-:cross-:~
前方:forward:~
有無:presence
いないものもある:not always
様々な:varied
合間:between
巨大:big
かなり/:a lot of
数多くの:lots of
何時間も:a lot of time
広く:widely
年:year
何年も前に:many years ago
後年:The following year
後年になって:over the subsequent years
何年かにわたって:a number of years
何回でも:any number of
何回かの/いくつかの/何個かの:a number of
数えきれない:such a large number of
各部:parts
末尾に:at the end
終端-:end
早期:early
早期段階:early stage
~~先行する/それまでの/先に:earlier
同じ頃に:around the time
それまで:previously
以前の:previous
され次第:as soon as
それからまもなく:shortly thereafter,
後続-:follow
多種多様な:wide array of
何十年にもわたり:over a period of several decades
さらには、:furthermore
以前は:formerly
他にも:among other
〜の他にも,:Beyond
何ら:whatsoever
他の何か:anything else
互いに:each other
何回でも:arbitrarily many
何~種類かの:several kind
何も:anything
どの地点でも:at any point
非:non-
〜全般:-wide
小さな:small
ほとんどにおいて:mostly
超え:beyond
末尾の:final
ひどく:highly
全体を通して:throughout
大多数:majority
最新な:latest
毎回:every time
ときには:sometimes
最初は:at first
1 周回:one pass
個数:number of
現時点:currently
他所:the rest
各種/:variety
多種多様:wide variety
〜から〜まで〜果ては:ranging from 〜
並べて:side by side
〜側:〜-side
〜全般:〜-wide
後ろから:backwards
様々な:varied
広-:wider
下げる:lower
他すべて:everything else
広:wide
等々:so forth
高まる:higher
-:surrounding#1
ほとんど〜ない:largely un-
増える:larger
まとめて/込みで:altogether
不定期:occasional basis:~
定期的:regular:~
日常的に:daily basisで
様々な:disparate
主要な:major
些細な:minor
小さな:minor
●●html_code_list
■intor-1
<!DOCTYPE html>
<html lang="ja">
<head>
<title>見本ページ</title>
</head>
<body>
<h1>見本ページ</h1>
<p>これは<a href="demo.html">単純</a>な見本。</p>
<!-- これはコメント -->
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sample page</title>
</head>
<body>
<h1>Sample page</h1>
<p>This is a <a href="demo.html">simple</a> sample.</p>
<!-- this is a comment -->
</body>
</html>
■intor-2 bad
<p>これは、<em>とても<strong>間違ってます</em>。</strong></p>
<p>This is <em>very <strong>wrong</em>!</strong></p>
■intor-3
<p>これ<em>は、<strong>正しい</strong>。</em></p>
<p>This <em>is <strong>correct</strong>.</em></p>
■intor-4
<a href="demo.html">見本</a>
■intor-5
<input name=address disabled>
<input name=address disabled="">
■intor-6
<input name=address maxlength=200>
<input name=address maxlength='200'>
<input name=address maxlength="200">
■intor-7
<!DOCTYPE html>
<html lang="en">
<head>
<title>スタイルされたページの見本</title>
<style>
body { background: navy; color: yellow; }
</style>
</head>
<body>
<h1>スタイルされたページの見本</h1>
<p>このページは、単なる見本です。</p>
</body>
</html>
<!DOCTYPE html>
<html lang="en">