index.html
182 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HTML - W3C Blog - Category Archives</title>
<style type="text/css" media="all">
@import "/QA/2006/01/blogstyle.css";
</style>
<meta name="keywords" content="W3C, QA, weblog, blog" />
<meta name="description" content="Archives for the W3C Questions and Answers Weblog - Category HTML" />
<meta name="revision" content="$Id: index.html,v 1.1352 2011/12/23 08:27:07 mirror Exp $" />
<link rel="alternate" type="application/atom+xml" title="Atom" href="http://www.w3.org/QA/atom.xml" />
<link rel="alternate" type="application/rss+xml" title="RSS 1.0" href="http://www.w3.org/QA/news.rss" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.w3.org/QA/rsd.xml" />
</head>
<body>
<div id="banner">
<h1 id="title">
<a href="http://www.w3.org/"><img height="48" alt="W3C" id="logo" src="http://www.w3.org/Icons/WWW/w3c_home_nb" /></a>
W3C Blog - Archives
</h1>
</div>
<ul class="navbar" id="menu">
<li><strong><a href="/QA/" title="W3C Blog Home">[ W3C Blog ]</a></strong></li>
<li><a href="/QA/Library/" title="Documents and Publications on Web and Quality">Documents</a></li>
<li><a href="/QA/Tools/" accesskey="3" title="Validators and other Tools">Tools</a></li>
<li><a href="/2007/12/qa-blog-help/index#feedback">Feedback</a></li>
</ul>
<div id="searchbox">
<form method="get" action="http://www.google.com/custom" enctype="application/x-www-form-urlencoded">
<p id="formbox"><input type="text" size="15" class="textfield" name="q" accesskey="E" maxlength="255" /> <input type="submit" class="submitfield" value="Search" id="goButton" name="sa" accesskey="G" /> <input type="hidden" name="cof" value="T:black;LW:72;ALC:#ff3300;L:http://www.w3.org/Icons/w3c_home;LC:#000099;LH:48;BGC:white;AH:left;VLC:#660066;GL:0;AWFID:0b9847e42caf283e;" /><input type="hidden" id="searchW3C" name="sitesearch" checked="checked" value="www.w3.org/QA" /><input type="hidden" name="domains" value="www.w3.org/QA" /></p>
</form>
</div>
<div id="main"><!-- This DIV encapsulates everything in this page - necessary for the positioning -->
<h2>Archives for Category: HTML</h2>
<h3><a href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html">Open Web Platform Weekly Summary - 2011-12-05 - 2011-12-11</a></h3>
<p><p>The Open Web Platform weekly summary is about love for the open Web, about the work we do together, about the hours we spent every day to create a better Web. I can work in this domain, because others gave an open environment for working. Let’s keep it open.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on December 12, 2011 11:32 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/12/open_web_platform_weekly_summa.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html">Open Web Platform Weekly Summary - 2011-11-29 - 2011-12-04</a></h3>
<p><p>The Open Web Platform weekly summary is about HTML5 oldies, shadows and intents, and protocols.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on December 5, 2011 7:42 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/technology/web_applications_1/">Web Applications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2011/12/openweb-weekly-22.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html">Open Web Platform Weekly Summary - 2011-11-21 - 2011-11-28</a></h3>
<p><p>This week, one of the main discussions has been around developing (or not) a support for XPath in find and findAll methods. The Open Web Platform weekly summary is also mentioning Web architecture, Web Apps WG hosting new work.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on November 28, 2011 3:18 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2011/11/openweb-weekly-21.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/11/rdfa_11_meets_json-ld_in_the_d.html">RDFa 1.1 meets JSON-LD in the Distiller…</a></h3>
<p><p>I have blogged recently on the update of the RDFa 1.1 Distiller. I have just added a cool new feature. Up to today, the possible serializations were RDF/XML, Turtle, and N Triples. Although not yet final, I decided to add...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/11/rdfa_11_meets_json-ld_in_the_d.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Ivan">Ivan Herman</a> on November 24, 2011 4:12 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/rdfa_11_meets_json-ld_in_the_d.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/11/rdfa_11_meets_json-ld_in_the_d.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/11/rdfa_11_meets_json-ld_in_the_d.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html">Open Web Platform Weekly Summary - 2011-11-14 - 2011-11-20</a></h3>
<p><p>This week, the Open Web Platform weekly summary is about HTML5 Tidy (yes it is back!), A few things about web apps such as storage mechanisms, and a few discussions about DOM properties. CSS has been discussing a few things including the issue of vendor extensions. And more bite sized information. Enjoy!</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on November 22, 2011 8:05 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/11/openweb-weekly-20.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html">Open Web Platform Weekly Summary - 2011-11-07 - 2011-11-13</a></h3>
<p><p>This week, the Open Web Platform weekly summary is about hgroup and time elements, lang attribute. There are discussions on starting work on Web Intents and how to create a simpler DOM for documents fragments. Plenty of other things. Enjoy.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on November 15, 2011 2:15 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/11/openweb-weekly-19.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/11/new_release_of_the_rdfa_11_dis.html">New release of the RDFa 1.1 Distiller and Validator </a></h3>
<p><p>Back in May I have already blogged on the release of a new, RDFa 1.1 version of the distiller code. Many things have happened since May, however, with changes in RDFa, introduction of RDFa 1.1 Lite, etc. I have also...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/11/new_release_of_the_rdfa_11_dis.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Ivan">Ivan Herman</a> on November 15, 2011 12:30 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/new_release_of_the_rdfa_11_dis.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/11/new_release_of_the_rdfa_11_dis.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2011/11/new_release_of_the_rdfa_11_dis.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/11/schemaorg_and_rdfa_11_lite_how.html">Schema.org and RDFa 1.1 Lite: how does it look now?</a></h3>
<p><p> In his latest blog entry on the Schema.org, Dan Brickley announced that Schema.org would also process RDFa 1.1 Lite as an alternative syntax to encode Schema.org terms. As he emphasized: This work opens up new possibilities also for developers...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/11/schemaorg_and_rdfa_11_lite_how.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Ivan">Ivan Herman</a> on November 12, 2011 9:12 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/technology/web_applications_1/">Web Applications</a>, <a href="http://www.w3.org/QA/archive/technology/web_design/">Web Design</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/schemaorg_and_rdfa_11_lite_how.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/11/schemaorg_and_rdfa_11_lite_how.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2011/11/schemaorg_and_rdfa_11_lite_how.html#trackback">TrackBacks (3)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html">Open Web Platform Weekly Summary - 2011-10-31 - 2011-11-06</a></h3>
<p><p>Last week, there was the annual W3C TPAC. The HTML Working Group met (day 1, day 2) and many other groups for discussing general issues. I introduced the Open Web Platform weekly summary and asked feedback on how to improve...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on November 7, 2011 9:36 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2011/11/openweb-weekly-18.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/10/serving_xhtml_with_math_a_reci.html">Serving XHTML with math: a recipe for Apache</a></h3>
<p><p>The future version 5 of HTML will allow math in a Web page, but the current version 4 does not. You can use <strong>X</strong>HTML instead, but not all Web clients understand it. Here is a recipe for the Apache Web server to make it return XHTML as HTML to such clients. That HTML will be invalid, of course, because it contains math, but the non-math parts are still handled. It's not as good a solution as having two versions of a page, but it's cheap.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/10/serving_xhtml_with_math_a_reci.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Bos/">Bert Bos</a> on October 19, 2011 10:35 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a>, <a href="http://www.w3.org/QA/archive/technology/web_design/">Web Design</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/10/serving_xhtml_with_math_a_reci.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/10/serving_xhtml_with_math_a_reci.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2011/10/serving_xhtml_with_math_a_reci.html#trackback">TrackBacks (1)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/10/html_slidy_on_smart_phones_and.html">HTML Slidy on smart phones and tablets</a></h3>
<p><p>Slidy is a free web application for slide presentations, and makes use of a simple HTML microformat for slides. Until recently, Slidy was difficult or impossible to use on keyboard-less touch screen devices like the iPhone or Android phones. I...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/10/html_slidy_on_smart_phones_and.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Dave Raggett</a> on October 8, 2011 6:59 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/usability/">Usability</a>, <a href="http://www.w3.org/QA/archive/technology/web_applications_1/">Web Applications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/10/html_slidy_on_smart_phones_and.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/10/html_slidy_on_smart_phones_and.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/10/html_slidy_on_smart_phones_and.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/09/impressions_on_the_schemaorg_w.html">Impressions on the Schema.org Workshop</a></h3>
<p><p> (This blog should have gone out about a week ago. By an unlucky clashes in my agenda, the trip to Mountain View was immediately followed by another trip, which made it difficult to publish this in a really timely...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/09/impressions_on_the_schemaorg_w.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Ivan">Ivan Herman</a> on September 30, 2011 6:06 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/technology/web_applications_1/">Web Applications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/09/impressions_on_the_schemaorg_w.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/09/impressions_on_the_schemaorg_w.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2011/09/impressions_on_the_schemaorg_w.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/09/proposing_two_new_sw_interest.html">Proposing two new SW Interest Group Task Forces</a></h3>
<p><p>One of the exciting events of the past few months was the joint announcement of schema.org from three major search engine providers (Google, Yahoo, and Microsoft). It was a major step in the recognition that structured data, embedded in Web...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/09/proposing_two_new_sw_interest.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Ivan">Ivan Herman</a> on September 20, 2011 3:57 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/technology/web_applications_1/">Web Applications</a>, <a href="http://www.w3.org/QA/archive/technology/web_design/">Web Design</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/09/proposing_two_new_sw_interest.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/09/proposing_two_new_sw_interest.html#comments">Comments (6)</a>
| <a href="http://www.w3.org/QA/2011/09/proposing_two_new_sw_interest.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html">Open Web Platform Weekly Summary - 2011-08-30 - 2011-09-11</a></h3>
<p><p>In my tracking of the Open Web Platform for writing the weekly summary, I decided to be a bit more careful on what is happening on the HTML WG bug tracker. A lot of the discussion is happening there too. The biggest issue being the number of useless comments or spam.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on September 12, 2011 8:22 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/09/openweb-weekly-17.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html">Open Web Platform Monthly Summary - 2011-07-29 - 2011-08-29</a></h3>
<p><p> I have decided to change a bit the style of weekly summary of the Open Web Platform. Instead of just going through the list of mails, I will try to focus on more specific things and give more context...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on August 30, 2011 8:17 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/08/openweb-weekly-16.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html">Open Web Platform Weekly Summary - 2011-07-13 - 2011-07-28</a></h3>
<p><p>The weekly summary of the Open Web Platform is out. A lot of discussion about HTTP. The IETF has been meeting recently in Canada. Anne Van Kesteren covers what I have not in his report.</p>
<p>HTML5 is still in Last Call but the last call is finishing on August 3, 2011</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on July 29, 2011 7:44 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/07/openweb-weekly-15.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html">Open Web Platform Weekly Summary - 2011-07-06 - 2011-07-12</a></h3>
<p><p>The weekly summary of the Open Web Platform is out. The big discussions from last week have continued this week. Mutation and Canvas accessibility. Anne Van Kesteren covers what I have not in his report.</p>
<p>HTML5 is still in Last Call.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on July 14, 2011 8:46 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/07/openweb-weekly-14.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html">Open Web Platform Weekly Summary - 2011-06-29 - 2011-07-05</a></h3>
<p><p>The weekly summary of the Open Web Platform is out. There was a few giant threads, be prepared to mutate any opinions about these events. Read also Anne van Kesteren's report. HTML5 is still in Last Call. Conversations Proposals Maciej...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on July 6, 2011 8:16 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/07/openweb-weekly-13.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html">Open Web Platform Weekly Summary - 2011-06-21 - 2011-06-28</a></h3>
<p><p>The weekly summary of the Open Web Platform is out. I like the fact that Anne Van Kesteren has a different overview than mine. His last report. HTML5 is still in Last Call. Conversations Proposals WebKit Team has been experimenting...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on June 29, 2011 9:00 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/06/openweb-weekly-12.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html">Open Web Platform Weekly Summary - 2011-05-17 - 2011-06-20</a></h3>
<p><p>Let's restart the Openweb platform weekly summary. It has been almost one month since the last time. HTML5 is in Last Call and there were a lot of discussions on many mailing lists. </p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on June 21, 2011 8:08 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/06/openweb-weekly-11.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/05/html5-lastcall-accessibility.html">Ensuring Accessibility Support in HTML5</a></h3>
<p><p>HTML5 was <a href="http://www.w3.org/News/2011#entry-9105">announced as a W3C Last Call Working Draft</a> on 25 May 2011. The <a href="http://www.w3.org/2011/05/html5lc-pr.html">W3C press release </a> invites broad review to determine to what extent HTML5 has met its technical requirements and dependencies. The <a href="http://www.w3.org/WAI/"> Web Accessibility Initiative (WAI)</a> encourages your comments and participation.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/05/html5-lastcall-accessibility.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Brewer/">Judy Brewer</a> on May 31, 2011 5:35 AM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/egov/">eGov</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/05/html5-lastcall-accessibility.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/05/html5-lastcall-accessibility.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2011/05/html5-lastcall-accessibility.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/05/html5_are_we_there_yet.html">HTML5: Are We There Yet?</a></h3>
<p><p>The HTML Working Group published <a href='http://www.w3.org/News/2011#entry-9105'>6 of their<br />
documents as Last Call documents</a>. It's time to get more people to look<br />
at those documents and give some feedback.<br />
</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/05/html5_are_we_there_yet.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on May 25, 2011 9:50 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/05/html5_are_we_there_yet.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/05/html5_are_we_there_yet.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2011/05/html5_are_we_there_yet.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/05/rdfa_11_with_a_rich_snippet_ex.html">RDFa 1.1 with a rich snippet example</a></h3>
<p><p> With RDFa 1.1 making its way out of last call, I looked at the examples from Google’s Webmaster Central to see what RDFa 1.1 brings to those. A typical example is the one on reviews; here s where it...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/05/rdfa_11_with_a_rich_snippet_ex.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Ivan">Ivan Herman</a> on May 23, 2011 10:39 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/05/rdfa_11_with_a_rich_snippet_ex.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/05/rdfa_11_with_a_rich_snippet_ex.html#comments">Comments (6)</a>
| <a href="http://www.w3.org/QA/2011/05/rdfa_11_with_a_rich_snippet_ex.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html">Open Web Platform Weekly Summary - 2011-05-09 - 2011-05-16</a></h3>
<p><p>The HTML WG is about to reach a very important step of the current W3C Process: Last Call. For a W3C Technology, it is the moment where the WG members think, they have solve any major issues. The document is considered mature and stable enough. Last Call is here to give another chance for all participants to review a stable version of the specification. All comments will be formally recorded and answered.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on May 16, 2011 8:22 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/05/openweb-weekly-10.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html">Open Web Platform Weekly Summary - 2011-04-25 - 2011-05-08</a></h3>
<p><p>I have been busy the last two weeks with traveling for conferences and workshop. I skipped the last weekly summary of the Open Web Platform. Let’s get that right on track and give information for the last two weeks about HTML5 and broader topics such as Web apps discussions and HTTP. The May 22 deadline for entering Last Call is approaching quickly. In two weeks, a new challenging phase of the work is starting. As a reminder we do not exit a recommendation phase but always entering the next one.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on May 8, 2011 7:51 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/05/openweb-weekly-09.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html">Open Web Platform Weekly Summary - 2011-04-18 - 2011-04-24</a></h3>
<p><p>This was quite a quiet week for the 8th edition at the exception of the CSS Working Group which I could not follow properly. Feel free to chime in the comments to add information about CSS or other groups.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on April 24, 2011 9:27 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/04/openweb-weekly-08.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html">Open Web Platform Weekly Summary - 2011-04-11 - 2011-04-17</a></h3>
<p><p>For this 7th edition, the HTML WG had discussions about accessibility related to images and tables with a few formal objections. The Last Call of HTML5 is approaching at a fast pace. There are active discussions about FileAPI and IndexedDB, which are fundamental bricks to enable Web applications in the browser. In the meantime, the HTTP Working Group has published a new series of drafts.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on April 17, 2011 8:17 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2011/04/openweb-weekly-07.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html">Open Web Platform Weekly Summary - 2011-04-04 - 2011-04-10</a></h3>
<p><p>Shelley Powers, like me, published a late weekly. We are totally in synchronization in covering the Open Web Platform weekly news from HTML5 and broader topics. That said it was again quite active not only on the HTML WG mailing list but also on the Web apps WG mailing list. W3C is opening more ways to contribute and the CSS 2.1 is officially reaching Proposed Recommendation. Read and tell me if anything is missing.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on April 10, 2011 8:49 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2011/04/openweb-weekly-06.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/04/wiki-based_documentation_proje.html">Wiki-based documentation project</a></h3>
<p><p>Introduce myself My name is Hiroki Yamada. I am a W3C Fellow from Internet Academy (Japanese company). Internet Academy is a school for Web Designers and Web Developers. I've been in charge of developing on curriculum and educational materials. And...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/04/wiki-based_documentation_proje.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Hiroki Yamada</a> on April 4, 2011 8:02 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/wiki-based_documentation_proje.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/04/wiki-based_documentation_proje.html#comments">Comments (6)</a>
| <a href="http://www.w3.org/QA/2011/04/wiki-based_documentation_proje.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html">Open Web Platform Weekly Summary - 2011-03-28 - 2011-04-03</a></h3>
<p><p>When we start writing and or read about the activities around the Open Web Platform, we realize that the Web has never been that active. Everyone is proposing, developping, testing. And even if this weekly news from HTML5 and broader topics seemed to be long, it doesn’t cover everything. It is also important to realize that if you are passionate about one of these topics, the full information is accessible and open. Quite exciting. Some of these topics could be the source of long technical blog posts. If you do, please leave a comment or let me know.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on April 3, 2011 8:43 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2011/04/openweb-weekly-05.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html">Open Web Platform Weekly Summary - 2011-03-21 - 2011-03-27</a></h3>
<p><p>As Shelley Powers mentioned this week was quite quiet, but there were a couple of decisions. A few new drafts and proposals and an interesting discussions about Web applications caching systems. The debate around longdesc attribute is far to be finished. <br />
</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on March 27, 2011 8:28 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/03/openweb-weekly-04.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html">Open Web Platform Weekly Summary - 2011-03-14 - 2011-03-20</a></h3>
<p><p>This was a big week in terms of decisions. I recommend to read carefully the decision made by the HTML Working Group. They are always very detailed and give a very good overview about the issues. They also propose a way to reopen the issue with meaningful materials. There have been many proposals and there are two workshops. W3C Workshops are opened to anyone.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on March 20, 2011 9:52 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2011/03/openweb-weekly-03.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html">Open Web Platform Weekly Summary - 2011-02-28 - 2011-03-06</a></h3>
<p><p>We are starting this week a weekly summary about the Open Web Platform. The intent is to give an overview of the discussions, proposals, decisions which have happened during the last week around the Open Web Platform with a focus on HTML5. This weekly summary covers events in multiple W3C groups, and some outside events as well. Feel free to chime in the comments and add information or ask for more details. This is an experiment; please send feedback to Karl Dubost or here in the comments.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://my.opera.com/karlcow/blog/">Karl Dubost</a> on March 7, 2011 10:34 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/open_web/">Open Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2011/03/open-web-weekly-summary.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2011/01/the_html5_logo_conversation.html">The HTML5 Logo Conversation</a></h3>
<p><p>See 2 Feb update. There has been a lot of discussion as a result of W3C's HTML5 logo release two days ago. I was especially encouraged by the diverse support for the HTML5 logo and I'm happy with the reception,...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2011/01/the_html5_logo_conversation.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on January 21, 2011 3:55 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/web_applications_1/">Web Applications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2011/01/the_html5_logo_conversation.html">Permalink</a>
| <a href="http://www.w3.org/QA/2011/01/the_html5_logo_conversation.html#comments">Comments (37)</a>
| <a href="http://www.w3.org/QA/2011/01/the_html5_logo_conversation.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/11/html5_testing.html">HTML5 Testing</a></h3>
<p><p>We need all the help we can get to make the test suite relevant and informative. Unless the community starts helping W3C, we won't be able to properly test HTML5.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/11/html5_testing.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on November 4, 2010 8:24 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/11/html5_testing.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/11/html5_testing.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2010/11/html5_testing.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html">W3C Technical Plenary: To HTML5 and beyond!</a></h3>
<p><p>Next week is the annual <a href='http://www.w3.org/2010/11/TPAC/'>W3C technical plenary</a>, aka TPAC 2010. It brings together participants in the W3C Community for an energetic week of coordinated work and discussion. Some sessions during the middle of the week are relevant to the HTML platform and its future.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on October 29, 2010 5:04 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2010/10/w3c_technical_plenary_to_html5.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/10/html5_the_jewel_in_the_open_we.html">HTML5: The jewel in the Open Web Platform</a></h3>
<p><p>The Open Web Platform to us is HTML5, a game-changing suite<br />
of tools that incorporates SVG, CSS and other standards that are in<br />
various stages of development and implementation by the community at<br />
W3C. At this stage community feedback plays an important role in ensuring that<br />
the HTML5 specification is the highest quality.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/10/html5_the_jewel_in_the_open_we.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on October 8, 2010 8:22 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/10/html5_the_jewel_in_the_open_we.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/10/html5_the_jewel_in_the_open_we.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2010/10/html5_the_jewel_in_the_open_we.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/09/how_do_we_test_a_web_browser_o.html">How do we test a Web browser? (one year after)</a></h3>
<p><p>The situation with regards to testing at W3C is improving a bit but is still far from ideal. Various groups are different ways to test implementations and are all lacking resources to improve their test suites. We need your help now to build the next open Web platform and make HTML5 a real success!</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/09/how_do_we_test_a_web_browser_o.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on September 15, 2010 1:06 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/09/how_do_we_test_a_web_browser_o.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/09/how_do_we_test_a_web_browser_o.html#comments">Comments (9)</a>
| <a href="http://www.w3.org/QA/2010/09/how_do_we_test_a_web_browser_o.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/09/html5_getting_to_last_call.html">HTML5: Getting to Last Call</a></h3>
<p><p>All new bugs related to the HTML5 specification received after the first October 2010 will be treated as Last Call comments, with possible exceptions granted by the Chairs. The intention is to get to the initial Last Call and have a feature complete document.<br />
</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/09/html5_getting_to_last_call.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on September 10, 2010 4:03 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/09/html5_getting_to_last_call.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/09/html5_getting_to_last_call.html#comments">Comments (8)</a>
| <a href="http://www.w3.org/QA/2010/09/html5_getting_to_last_call.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/09/web_on_tv_workshop_in_japan.html">Web on TV workshop in Japan</a></h3>
<p><p>The Web on TV workshop in Japan brings TV broadcasters, device makers, and Web companies at the same table. Around 130 participants are attending the workshop, making it the biggest W3C workshop ever. The main topic of the workshop is how, going forward, we apply Web technologies, in particular HTML5, to the television set.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/09/web_on_tv_workshop_in_japan.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on September 2, 2010 11:11 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a>, <a href="http://www.w3.org/QA/archive/workshops/">Workshops</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/09/web_on_tv_workshop_in_japan.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/09/web_on_tv_workshop_in_japan.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2010/09/web_on_tv_workshop_in_japan.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/07/w3c_unicorn_launch_off_to_good.html">W3C Unicorn Launch off to good start</a></h3>
<p><p>On July 27th, 2010 we made the first official release on Unicorn. We are elated with the response from the community. Within two days after the announcement we received 7 additional translations. There are already a couple new checkers in...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/07/w3c_unicorn_launch_off_to_good.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Ted/">Ted Guild</a> on July 30, 2010 5:15 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a>, <a href="http://www.w3.org/QA/archive/technology/web_design/">Web Design</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/07/w3c_unicorn_launch_off_to_good.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/07/w3c_unicorn_launch_off_to_good.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2010/07/w3c_unicorn_launch_off_to_good.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/07/html5_in_w3c_cheatsheet.html">HTML5 in W3C Cheatsheet</a></h3>
<p><p>From the very first release of the cheatsheet, I’ve received requests to include the various new elements and attributes of the HTML5 specification in the cheatsheet. As a reminder, the cheatsheet is a mobile-friendly Web application that provides a compilation...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/07/html5_in_w3c_cheatsheet.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Dom/">Dominique Hazaël-Massieux</a> on July 20, 2010 3:26 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/07/html5_in_w3c_cheatsheet.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/07/html5_in_w3c_cheatsheet.html#comments">Comments (10)</a>
| <a href="http://www.w3.org/QA/2010/07/html5_in_w3c_cheatsheet.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/07/the_core_mission_of_w3c.html">The Core Mission of W3C</a></h3>
<p><p> New July 9, 2010 I reported in The Mission of W3C that a major focus of W3C is to Strengthen our core mission. This blog entry elaborates. Broad and / or deep Since the Web is central to everything...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/07/the_core_mission_of_w3c.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Jeff Jaffe</a> on July 16, 2010 6:14 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/ceo/">CEO</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/07/the_core_mission_of_w3c.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/07/the_core_mission_of_w3c.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2010/07/the_core_mission_of_w3c.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/06/xhtml_modularization_a_markup.html">XHTML Modularization: a markup language designer's toolkit</a></h3>
<p><p>The current maintenance update to XHTML Modularization is in response to the inevitable bug reports and clarifications that come from actual use. Since there have recently been some misconceptions expressed about the purpose of the spec, I'd thought I'd take...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/06/xhtml_modularization_a_markup.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.cwi.nl/~steven">Steven Pemberton</a> on June 3, 2010 8:45 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/publications/">Publications</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/technology/xml/">XML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/06/xhtml_modularization_a_markup.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/06/xhtml_modularization_a_markup.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2010/06/xhtml_modularization_a_markup.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html">Thanks for a great 15 years at W3C</a></h3>
<p><p>After 15 years working with all of you all around the world on Web technologies and standards, I'm taking a position as a Biomedical Informatics Software Engineer in the department of biostatistics at the University of Kansas Medical center. The...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on June 2, 2010 7:04 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html#comments">Comments (30)</a>
| <a href="http://www.w3.org/QA/2010/06/thanks_for_a_great_15_years_at.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/05/asia_and_w3c.html">Asia and W3C</a></h3>
<p><p> A visit with staff at Keio University I continue to meet key stakeholders around the world as part of my introduction to W3C. The last two weeks have been focused on Asia. India I visited India last week partly...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/05/asia_and_w3c.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Jeff/">Jeff Jaffe</a> on May 14, 2010 8:39 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/ceo/">CEO</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/internationalization/">Internationalization</a>, <a href="http://www.w3.org/QA/archive/technology/mobile/">Mobile</a>, <a href="http://www.w3.org/QA/archive/technology/social_networking/">Social Networking</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/05/asia_and_w3c.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/05/asia_and_w3c.html#comments">Comments (5)</a>
| <a href="http://www.w3.org/QA/2010/05/asia_and_w3c.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/05/html5_video.html">HTML5 Video</a></h3>
<p><p>Two years and a half ago, Dan Connolly wrote about <a href='/QA/2007/12/when_will_html_5_support_soone.html'>When will HTML 5 support <video>? Sooner if you help</a>. Where are we with HTML5 Video nowadays?</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/05/html5_video.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on May 14, 2010 5:31 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/05/html5_video.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/05/html5_video.html#comments">Comments (6)</a>
| <a href="http://www.w3.org/QA/2010/05/html5_video.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/05/truly_w3c_community_building_a_2.html">Truly W3C Community building at WWW2010 (Part 2)</a></h3>
<p><p>The very recent announcements from Microsoft (“The Future of the Web is HTML5”), Apple (“We are betting big on HTML5”) and Google (“New open standards created in the mobile era, such as HTML5, will win on mobile devices (and PCs...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/05/truly_w3c_community_building_a_2.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/mcf/">Marie-Claire Forgue</a> on May 6, 2010 2:42 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/05/truly_w3c_community_building_a_2.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/05/truly_w3c_community_building_a_2.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2010/05/truly_w3c_community_building_a_2.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/04/rdfa_11_version_of_the_pyrdfa.html">RDFa 1.1 version of the pyRdfa distiller</a></h3>
<p><p>W3C has just published a First Public Working Draft for RDFa 1.1 Core and XHTML+RDFa 1.1. Yay! I did have an RDFa Distiller software and service for RDFa 1.0. Well, I did spend some time in the past few weeks...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/04/rdfa_11_version_of_the_pyrdfa.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Ivan">Ivan Herman</a> on April 22, 2010 3:02 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/04/rdfa_11_version_of_the_pyrdfa.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/04/rdfa_11_version_of_the_pyrdfa.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2010/04/rdfa_11_version_of_the_pyrdfa.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/03/html_5_meetup_-_paris.html">HTML5 Meetup - Paris</a></h3>
<p><p>We're doing an other HTML5 meetup event in Paris on April 7.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/03/html_5_meetup_-_paris.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on March 31, 2010 3:02 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/technology/mobile/">Mobile</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/03/html_5_meetup_-_paris.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/03/html_5_meetup_-_paris.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2010/03/html_5_meetup_-_paris.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/03/update_on_html_5_document_lice.html">Update on HTML 5 Document License</a></h3>
<p><p>Today at the W3C Advisory Committee meeting, we discussed the document license for HTML 5. We discussed use cases from the HTML Working Group that call for a more open license than the current W3C Document License. The result of...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/03/update_on_html_5_document_lice.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on March 23, 2010 5:35 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/03/update_on_html_5_document_lice.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/03/update_on_html_5_document_lice.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2010/03/update_on_html_5_document_lice.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/03/looking_at_the_next_open_web_p.html">Looking at the Next Open Web Platform on March 27</a></h3>
<p><p>For those of you who will be in Cambridge, MA on March 27, a few of us will be giving several presentations around HTML 5, CSS 3, and SVG in the morning. We'll have a hands-on session in the afternoon.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/03/looking_at_the_next_open_web_p.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on March 16, 2010 4:55 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/03/looking_at_the_next_open_web_p.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/03/looking_at_the_next_open_web_p.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2010/03/looking_at_the_next_open_web_p.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2010/03/w3c_trackwww2010_lod_and_html.html">W3C Track@WWW2010: LOD and HTML 5</a></h3>
<p><p>At this year's 19th International World Wide Web Conference (WWW2010 - Raleigh, NC, USA), W3C will organize two "camps": the "HTML 5 camp" and the "Linked Open Data (LOD) camp" (29 and 30 April 2010). The "camp" format of the...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2010/03/w3c_trackwww2010_lod_and_html.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/mcf/">Marie-Claire Forgue</a> on March 3, 2010 6:13 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/technology/mobile/">Mobile</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/technology/social_networking/">Social Networking</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a>, <a href="http://www.w3.org/QA/archive/technology/egov/">eGov</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2010/03/w3c_trackwww2010_lod_and_html.html">Permalink</a>
| <a href="http://www.w3.org/QA/2010/03/w3c_trackwww2010_lod_and_html.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2010/03/w3c_trackwww2010_lod_and_html.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/11/w3c_cheatsheet_for_developers.html">W3C Cheatsheet for developers</a></h3>
<p><p>Yesterday, as part of the W3C Technical Plenary day, I got the opportunity to introduce a new tool that I had been working on over the past few weeks, the W3C Cheatsheet for Web developers. This cheatsheet aims at providing...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/11/w3c_cheatsheet_for_developers.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Dom/">Dominique Hazaël-Massieux</a> on November 5, 2009 9:47 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/internationalization/">Internationalization</a>, <a href="http://www.w3.org/QA/archive/technology/mobile/">Mobile</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/11/w3c_cheatsheet_for_developers.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/11/w3c_cheatsheet_for_developers.html#comments">Comments (22)</a>
| <a href="http://www.w3.org/QA/2009/11/w3c_cheatsheet_for_developers.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/09/how_do_we_test_a_web_browser.html">How do we test a Web browser?</a></h3>
<p><p>Testing all possible Web browsers out there is hard and requires more effort than one organization can afford by itself. The idea of increasing the level of Web browser testing done in W3C is to involve the community at large as much as possible. If we really want an interoperable Web, that's what W3C should move to.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/09/how_do_we_test_a_web_browser.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on September 17, 2009 9:51 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/09/how_do_we_test_a_web_browser.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/09/how_do_we_test_a_web_browser.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2009/09/how_do_we_test_a_web_browser.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/06/orthogonality_of_specification.html"> Orthogonality of Specifications</a></h3>
<p><p>HTTP,HTML,URI The general principle of platform design is that platforms consist of a set of standard interfaces. Standard interfaces allow substitution of components across the interface boundary, while independence of interfaces allow evolution of the interfaces themselves. In a PC,...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/06/orthogonality_of_specification.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://larry.masinter.net">Larry Masinter</a> on June 24, 2009 1:03 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/06/orthogonality_of_specification.html">Permalink</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/05/_watching_the_google_io.html">HTML5 isn't a standard yet</a></h3>
<p><p> Watching the Google I/O first day keynote, I'm pleased to see the level of support and interest from Google about HTML5. Sure enough, I wished SVG would have been mentioned there, as they did for the Canvas API, since...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/05/_watching_the_google_io.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on May 28, 2009 9:04 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/publications/">Publications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/05/_watching_the_google_io.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/05/_watching_the_google_io.html#comments">Comments (35)</a>
| <a href="http://www.w3.org/QA/2009/05/_watching_the_google_io.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/05/structured_data_and_search_eng.html">Search Engines take on Structured Data</a></h3>
<p><p>Structured data on the web got a boost this week, with Google's announcement of Rich Snippets and Rich Snippets in Custom Search. Structured data at such a large scale raises at least three issues:SyntaxVocabularyPolicyGoogle's documentation shows support for both microformats...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/05/structured_data_and_search_eng.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on May 13, 2009 4:18 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a>, <a href="http://www.w3.org/QA/archive/technology/egov/">eGov</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/05/structured_data_and_search_eng.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/05/structured_data_and_search_eng.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2009/05/structured_data_and_search_eng.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html">Data interchange problems come in all sizes</a></h3>
<p><p> I had a pretty small data interchange problem the other day: I just wanted to archive some play lists that I had compiled using various music player daemon (mpd) clients. The mpd server stores playlists as simple m3u files,...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on May 8, 2009 9:10 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2009/05/data_interchange_problems_come.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/05/once_more_into_versioning_--_t.html">Once more into Versioning -- this time with HTML</a></h3>
<p><p>The W3C TAG has worked on the general issue of "versioning" for many years, and many TAG members may be worn out on the issue. However, undeterred by past history, I'm taking another run at it, this time trying to...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/05/once_more_into_versioning_--_t.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://larry.masinter.net">Larry Masinter</a> on May 4, 2009 5:39 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/05/once_more_into_versioning_--_t.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/05/once_more_into_versioning_--_t.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2009/05/once_more_into_versioning_--_t.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/03/a_rough_view_of_the_future.html">A rough view of the future</a></h3>
<p><p>A (rough) vision of future Web technologies working together.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/03/a_rough_view_of_the_future.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on March 24, 2009 6:52 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a>, <a href="http://www.w3.org/QA/archive/technology/xml/">XML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/03/a_rough_view_of_the_future.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/03/a_rough_view_of_the_future.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2009/03/a_rough_view_of_the_future.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/02/palm_webos_approach_to_html_ex.html">Palm webOS approach to HTML extensibility: x-mojo-*</a></h3>
<p><p> I got pretty excited about the iPhone, and even more about the openness of Android and the G1, and then I learn that the Palm Pre developer platform is basically just the open web platform: HTML, CSS, and JavaScript....</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/02/palm_webos_approach_to_html_ex.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on February 16, 2009 5:04 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/mobile/">Mobile</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/02/palm_webos_approach_to_html_ex.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/02/palm_webos_approach_to_html_ex.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2009/02/palm_webos_approach_to_html_ex.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/01/valid_sites_work_better.html">Valid sites work better(?)</a></h3>
<p><p>I learned to write standard-compliant Web pages when the likely alternative was “the browser will likely crash on your tag soup”. In an age of graceful error recovery, does it still matter to produce valid code? Share your stories here.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/01/valid_sites_work_better.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on January 29, 2009 9:26 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/01/valid_sites_work_better.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/01/valid_sites_work_better.html#comments">Comments (34)</a>
| <a href="http://www.w3.org/QA/2009/01/valid_sites_work_better.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2009/01/javascript_required_for_basic.html">JavaScript required for basic textual info? TRY AGAIN</a></h3>
<p><p>Sam says he's Online and Airborne. "Needless to say, this is seriously cool." I'll say! But when I follow the link to details from the service provider, I get:Sorry. You must have JavaScript enabled to view this page. Click the...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2009/01/javascript_required_for_basic.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on January 27, 2009 10:01 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/security/">Security</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2009/01/javascript_required_for_basic.html">Permalink</a>
| <a href="http://www.w3.org/QA/2009/01/javascript_required_for_basic.html#comments">Comments (8)</a>
| <a href="http://www.w3.org/QA/2009/01/javascript_required_for_basic.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/12/validator_donation_program.html">Validator Donation Program: day 2</a></h3>
<p><a href="/QA/Tools/Donate"><img style="border:none; vertical-align: middle;" alt="I Love Validator" src="http://www.w3.org/QA/Tools/I_heart_validator.png" /></a> What's this new <a href="/QA/Tools/Donate">Validator Donation Program</a>? Why a donation campaign? What would W3C do with that money? And isn't w3c really, really rich already anyway?</p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/12/validator_donation_program.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on December 12, 2008 7:42 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/12/validator_donation_program.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/12/validator_donation_program.html#comments">Comments (7)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/12/web_applications_security_requ.html">How to evaluate Web Applications security designs?</a></h3>
<p><p> I could use some help getting my head around security for Web Applications and mashups. The first time someone told me W3C should be working on specs help the browser prevent sensitive data from leaking out of enterprises, I...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/12/web_applications_security_requ.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on December 3, 2008 5:00 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/12/web_applications_security_requ.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/12/web_applications_security_requ.html#comments">Comments (3)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/11/w3c_validator_now_with_html5.html">W3C Validator, now with HTML5 flavour</a></h3>
<p><p>For too long we struggled with the tension between “perfect support for standards” and “be cutting edge to help develop better new technologies”. With the <a href="http://validator.w3.org/whatsnew.html#t2008-11-20" title="What's New at The W3C Markup Validation Service - version 0.8.4">latest version of our Markup Validator</a>, integrating with the <a href="http://about.validator.nu/">validator.nu</a> engine, comes part of the solution.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/11/w3c_validator_now_with_html5.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on November 21, 2008 5:53 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/11/w3c_validator_now_with_html5.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/11/w3c_validator_now_with_html5.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2008/11/w3c_validator_now_with_html5.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/11/html5-howto.html">Learn How To Write HTML 5</a></h3>
<p><p>HTML 5 is too complex? Wait, wait, there is something coming.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/11/html5-howto.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 18, 2008 8:12 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/web_spotting/">Web Spotting</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/11/html5-howto.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/11/html5-howto.html#comments">Comments (11)</a>
| <a href="http://www.w3.org/QA/2008/11/html5-howto.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/11/html_5_the_markup.html">HTML 5, the markup</a></h3>
<p><p>People interested only the html 5 content model were not satisfied with the huge html 5 specification. Discover html 5, the markup language.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/11/html_5_the_markup.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 14, 2008 3:01 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/reference/">Reference</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/11/html_5_the_markup.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/11/html_5_the_markup.html#comments">Comments (16)</a>
| <a href="http://www.w3.org/QA/2008/11/html_5_the_markup.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/09/fixing-html-with-html5.html">HTML 5 And The Hear-Write Web</a></h3>
<p><p>Is there a way to improve the HTML ecosystem in a way that creates more adoption of HTML 5? From parsing to serialization to fixing, how do we recover broken Web documents?</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/09/fixing-html-with-html5.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 26, 2008 6:44 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/fixing-html-with-html5.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/09/fixing-html-with-html5.html#comments">Comments (10)</a>
| <a href="http://www.w3.org/QA/2008/09/fixing-html-with-html5.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/09/top-500-html5-validity.html">Alexa Global Top 500 against HTML 5 validation</a></h3>
<p><p>Following Brian Wilson lead and his validity survey, I tested against html 5. Less than 1% of top 500 Alexa Web sites seems to pass html 5 conformance checking. </p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/09/top-500-html5-validity.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 19, 2008 6:57 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/top-500-html5-validity.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/09/top-500-html5-validity.html#comments">Comments (11)</a>
| <a href="http://www.w3.org/QA/2008/09/top-500-html5-validity.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/09/howto-insert-youtube-video.html">How To Insert A Video From Youtube</a></h3>
<p><p>I was struggling for inserting a video in a Web page, I had to change a bit the markup which was proposed to me to make it work in a way that satisfies me.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/09/howto-insert-youtube-video.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 8, 2008 1:50 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/howto-insert-youtube-video.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/09/howto-insert-youtube-video.html#comments">Comments (40)</a>
| <a href="http://www.w3.org/QA/2008/09/howto-insert-youtube-video.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/09/build-your-own-browser.html">Build Your Own Browser</a></h3>
<p><p>Little Web bricks help to create new browsers.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/09/build-your-own-browser.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 2, 2008 6:23 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/09/build-your-own-browser.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/09/build-your-own-browser.html#comments">Comments (6)</a>
| <a href="http://www.w3.org/QA/2008/09/build-your-own-browser.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/08/html5-validator-beta.html">HTML 5, a new step</a></h3>
<p><p>HTML 5 conformance checking has been integrated into the beta W3C Markup Validator.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/08/html5-validator-beta.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on August 26, 2008 11:41 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/bugs_life/">Bugs Life</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/08/html5-validator-beta.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/08/html5-validator-beta.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2008/08/html5-validator-beta.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/08/the_details_of_data_in_documen.html">The details of data in documents: GRDDL, profiles, and HTML5</a></h3>
<p><p>GRDDL, a mechanism for putting RDF data in XML/XHTML documents, is specified mostly at the XPath data model level. Some GRDDL software goes beyond XML and supports HTML as she are spoke, aka tag soup. HTML 5 is intended to...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/08/the_details_of_data_in_documen.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on August 22, 2008 7:45 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a>, <a href="http://www.w3.org/QA/archive/technology/xml/">XML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/08/the_details_of_data_in_documen.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/08/the_details_of_data_in_documen.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2008/08/the_details_of_data_in_documen.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/08/the-digital-stakhanovite.html">The Digital Stakhanovite</a></h3>
<p><p>Designing a technology that will accomodate our social contexts of the digital Stakhanovite is a big challenge, far to be simple to solve.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/08/the-digital-stakhanovite.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on August 18, 2008 2:18 AM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/08/the-digital-stakhanovite.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/08/the-digital-stakhanovite.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2008/08/the-digital-stakhanovite.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/08/markup_validator_updated.html">Markup Validator Updated</a></h3>
<p><p>New release for W3C's most popular open source service: fewer bugs, more document types supported, more fun to hack with, and a few other goodies in the mix.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/08/markup_validator_updated.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on August 8, 2008 1:11 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/bugs_life/">Bugs Life</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/08/markup_validator_updated.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/08/markup_validator_updated.html#comments">Comments (5)</a>
| <a href="http://www.w3.org/QA/2008/08/markup_validator_updated.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/07/reading-tech-blogs.html">Pleasure of Reading Tech Blog Posts</a></h3>
<p><p>Tech blog posts offer sometimes gems for reading. Here a selection of articles, I have been reading, by Robert O'Callahan, John Resig, and Michael Sperberg-McQueen.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/07/reading-tech-blogs.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 24, 2008 7:55 AM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/reading-tech-blogs.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/07/reading-tech-blogs.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2008/07/reading-tech-blogs.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/07/web-standards-curriculum.html">Once Upon A Time, Web Standards Curriculum </a></h3>
<p><p>Once upon a time, we started the Quality Assurance activity at W3C in 2001, one of the objectives was to find a way to improve the materials for communicating with Web developers. In the QA group, Snorre M. Grimsby (Opera) told me that we might find resources for producing educational materials. The discussion became quiet for a while and restarted in June 2006 with <a href="http://my.opera.com/dstorey/blog/">David Storey</a> (Opera). As the same time, some people at <a href="http://webstandards.org/">WASP</a> started a survey for defining requirements for a Web Standards Curriculum. </p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/07/web-standards-curriculum.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 10, 2008 5:40 AM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/web-standards-curriculum.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/07/web-standards-curriculum.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2008/07/web-standards-curriculum.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/07/x-site-requests.html">Getting closer to a standard for client-side cross-site requests</a></h3>
<p><p>Good news today from Sunava Dutta of Microsoft's Internet Explorer team in regard to the W3C Access Control for Cross-Site Requests specification: Sunava writes that, as early as IE8 Beta 2, IE8 will ship the updated section of Access Control...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/07/x-site-requests.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Michael(tm) Smith</a> on July 10, 2008 1:09 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/x-site-requests.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/07/x-site-requests.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2008/07/x-site-requests.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/07/life_without_mime_type_sniffin.html">life without MIME type sniffing?</a></h3>
<p><p> In a recent item on IE8 Security, Eric Lawrence, Security Program Manager for Internet Explorer, introduced a work-around to the security risks associated with content-type sniffing: an authoritative=true parameter on the Content-Type header in HTTP. This re-started discussion of...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/07/life_without_mime_type_sniffin.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on July 7, 2008 5:19 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/bugs_life/">Bugs Life</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/life_without_mime_type_sniffin.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/07/life_without_mime_type_sniffin.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2008/07/life_without_mime_type_sniffin.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/07/html5-parsing-howto.html">The How-To for html 5 parsing</a></h3>
<p><p>You have read a lot about the html 5 specification. You heard that there were hidden dragons and acid rains. But what about looking by yourself practically how html 5 parsing is working? There are already some tools to play with html 5.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/07/html5-parsing-howto.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 7, 2008 2:35 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/html5-parsing-howto.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/07/html5-parsing-howto.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2008/07/html5-parsing-howto.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.html">Improving Interoperability by Short Release Cycle </a></h3>
<p><p>When a software is shipped, it has bugs. There are many reasons for these bugs. It can be poor in-house development, it can be careless testing, it can be unclear specifications, and many other things. We have to live with these bugs in software. Is there a way out?</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 7, 2008 12:53 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/bugs_life/">Bugs Life</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2008/07/interoperability-release-cycle.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html">The War of the Worlds</a></h3>
<p><p>Some people are amazing, they are creators. They make complex things, beautiful and simple. They make the world a place of exploration and discovering.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 27, 2008 7:27 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2008/06/war-of-the-worlds.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/06/shipbuilding.html">Shipbuilding (or, cruel to be kind)</a></h3>
<p><p>When groups of implementors and others (working groups in standards bodies and what have you, or groups of implementors and others with shared interest in a certain set of technologies) gather together publicly for focused technical discussion on a particular...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/06/shipbuilding.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Michael(tm) Smith</a> on June 26, 2008 4:18 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/shipbuilding.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/06/shipbuilding.html#comments">Comments (6)</a>
| <a href="http://www.w3.org/QA/2008/06/shipbuilding.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/06/doc_vs_reinvent.html">Documenting the Web vs. reinventing it</a></h3>
<p><p>Ian Hickson, the editor of the current HTML5 draft, posted an Error handling in URIs message to the uri@w3.org mailing list outlining some issues related to browser error handling behaviour for URIs, and to IRIs and character encodings other than...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/06/doc_vs_reinvent.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Michael(tm) Smith</a> on June 26, 2008 12:23 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/doc_vs_reinvent.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/06/doc_vs_reinvent.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2008/06/doc_vs_reinvent.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html">How to contribute to W3C work… with a PhD</a></h3>
<p><p>A few months ago, I was explaining how you can participate to W3C work in a different way: writing tutorials, writing quick tips. I found out last week a new and original way to participate to W3C work. </p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 23, 2008 3:00 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2008/06/contribute-w3c-work.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/06/interview_david_baron_on_firef.html">Interview: David Baron on Firefox 3 and W3C Standards</a></h3>
<p><p> At the news of the official release of Firefox 3 (FF3), I asked David Baron, Mozilla's Advisory Committee Representative at W3C (see photo), a few questions about the browser release and support for standards. Note: I anticipate interviewing (lots...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/06/interview_david_baron_on_firef.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on June 20, 2008 7:29 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/interviews/">Interviews</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/technology/security/">Security</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/interview_david_baron_on_firef.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/06/interview_david_baron_on_firef.html#comments">Comments (5)</a>
| <a href="http://www.w3.org/QA/2008/06/interview_david_baron_on_firef.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/06/html5-publications.html">HTML 5 Publications</a></h3>
<p><p>Four documents have been recently published for HTML 5 by the HTML Working Group.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/06/html5-publications.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 11, 2008 1:51 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/publications/">Publications</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/06/html5-publications.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/06/html5-publications.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2008/06/html5-publications.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/05/utf8-web-growth.html">utf-8 Growth On The Web</a></h3>
<p><p>utf-8 is taking over traditional encodings on the Web.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/05/utf8-web-growth.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 6, 2008 11:51 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/05/utf8-web-growth.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/05/utf8-web-growth.html#comments">Comments (8)</a>
| <a href="http://www.w3.org/QA/2008/05/utf8-web-growth.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/05/canvas-text-and-cjk.html">Vertical Layouts for Canvas Text (CJK)</a></h3>
<p><p>How to handle vertical layouts (for example CJK) with Canvas Text API. I give some references to have a snapshot of the constraints and issues.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/05/canvas-text-and-cjk.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 2, 2008 3:35 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/reference/">Reference</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/05/canvas-text-and-cjk.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/05/canvas-text-and-cjk.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2008/05/canvas-text-and-cjk.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/04/font-dead-style-global.html">font is dead, vive le style</a></h3>
<p><p>font is gone, style="" is made global (in HTML 5).</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/04/font-dead-style-global.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on April 30, 2008 3:00 AM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/04/font-dead-style-global.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/04/font-dead-style-global.html#comments">Comments (11)</a>
| <a href="http://www.w3.org/QA/2008/04/font-dead-style-global.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/04/alt-authoring-practices.html">alt attributes authoring practices</a></h3>
<p><p>There has been a lot of discussions around <code>alt</code> attributes on HTML WG mailing list. It's always difficult to move forward in such discussions because it seems to be easy when in fact it is rather complicated.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/04/alt-authoring-practices.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on April 30, 2008 2:47 AM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/04/alt-authoring-practices.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/04/alt-authoring-practices.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2008/04/alt-authoring-practices.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/04/proposed_activity_for_video_on.html">Proposed Activity for Video on the Web</a></h3>
<p><p>W3C organized a workshop on Video on the Web in December 2007 in order<br />
to share current experiences and examine the technologies (see <a href='http://www.w3.org/2007/08/video/report.html'>report</a>) and is now following up with a proposal for a Video on the Web activity.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/04/proposed_activity_for_video_on.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/LeHegaret/">Philippe Le Hégaret</a> on April 15, 2008 3:29 PM in <a href="http://www.w3.org/QA/archive/technology/accessibility/">Accessibility</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/technology/">Technology</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/04/proposed_activity_for_video_on.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/04/proposed_activity_for_video_on.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2008/04/proposed_activity_for_video_on.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/04/badges.html">A validator is not an accessibility evaluation tool?</a></h3>
<p><p>Currently, the most active discussion thread on the HTML working group's public mailing list, public-html, is one regarding the issue of whether in HTML5 the alt attribute should always be required on images. And Henri Sivonen is among the most...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/04/badges.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Michael(tm) Smith</a> on April 14, 2008 2:19 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/04/badges.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/04/badges.html#comments">Comments (6)</a>
| <a href="http://www.w3.org/QA/2008/04/badges.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/03/html-wg-working-together.html">HTML WG members working together</a></h3>
<p><p>Web standards are made by people. They interact, discuss, debate. They find issues, argue about them and finally try to settle down on what should be done. In the end, eventually it would be specified properly in a W3C Working Draft and then implemented in an interoperable way. It takes time and energy. I give here an example of a recent discussion between members of the HTML WG.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/03/html-wg-working-together.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 13, 2008 1:12 AM in <a href="http://www.w3.org/QA/archive/w3cqa_news/bugs_life/">Bugs Life</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/html-wg-working-together.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/03/html-wg-working-together.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2008/03/html-wg-working-together.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/03/browser_wars_html_test_jam_and.html">Browser wars, HTML test jam, and CSS awards at SXSW Interactive in Austin</a></h3>
<p><p>When he opened the panel today to a packed room, Arun admitted that the "browser wars" title was a little sensationalist; mostly Brendan Eich, Chris Wilson, and Charles McCathieNevile are on the same side, trying to make the Web better...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/03/browser_wars_html_test_jam_and.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on March 10, 2008 10:06 PM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/browser_wars_html_test_jam_and.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/03/browser_wars_html_test_jam_and.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2008/03/browser_wars_html_test_jam_and.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/03/html-charset.html">Character encoding in HTML</a></h3>
<p><p>In this first issue in the <em>cookbook for the web</em> series, we look at character encoding, or "charset"s. Discussing the ingredients, giving a reliable recipe for the detection of character encodings in (x)html, and a quick tip for web authors on an html diet.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/03/html-charset.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on March 10, 2008 4:11 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/html-charset.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/03/html-charset.html#comments">Comments (14)</a>
| <a href="http://www.w3.org/QA/2008/03/html-charset.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/03/web-templating-language.html">Templating Language for Authoring Tools</a></h3>
<p><p>Structure editing of Web pages is not a simple task. XTiger is a language for authoring Web content including rich information such as microformats and RDFa. Try it.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/03/web-templating-language.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 10, 2008 7:06 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/03/web-templating-language.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/03/web-templating-language.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2008/03/web-templating-language.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/02/authoring-html5.html">Authoring HTML 5</a></h3>
<p><p>We need a group of people ready to do <strong>actual work</strong> on HTML 5 for authors. Join the HTML WG.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/02/authoring-html5.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on February 12, 2008 9:27 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/02/authoring-html5.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/02/authoring-html5.html#comments">Comments (7)</a>
| <a href="http://www.w3.org/QA/2008/02/authoring-html5.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html">IE8 versioning snowstorm</a></h3>
<p><p>keeping track on what is being said about <a href="http://www.w3.org/QA/2008/01/ie8-versioning-mechanism.html">IE8 and opt-in versioning mechanism</a>.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on January 22, 2008 7:58 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2008/01/ie8_versioning_snowstorm.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/01/html5.html">www.w3.org/TR/html5</a></h3>
<p><p>It's been a long time coming. Either 10 months (if you count back to when the current W3C HTML Working Group was chartered) or 10 years (if you consider when the HTML 4.0 Recommendation was published. Or maybe just 4...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/01/html5.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Michael(tm) Smith</a> on January 22, 2008 3:10 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/01/html5.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/01/html5.html#comments">Comments (5)</a>
| <a href="http://www.w3.org/QA/2008/01/html5.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/01/ie8-versioning-mechanism.html">IE8 and opt-in versioning mechanism</a></h3>
<p><p>Microsoft proposes an opt-in versioning mechanism for IE8 for Web developers using the meta element of HTML.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/01/ie8-versioning-mechanism.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on January 22, 2008 1:43 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/01/ie8-versioning-mechanism.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/01/ie8-versioning-mechanism.html#comments">Comments (5)</a>
| <a href="http://www.w3.org/QA/2008/01/ie8-versioning-mechanism.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/01/modularity.html">Simple things make firm foundations</a></h3>
<p><p>You can look at the development of web technology in many ways, but one way is as a major software project. In software projects, the independence of specs, has always been really important, I have felt. A classic example is...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/01/modularity.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Berners-Lee/">Tim Berners-Lee</a> on January 18, 2008 3:39 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_architecture/">Web Architecture</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/01/modularity.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/01/modularity.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2008/01/modularity.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/01/html5-is-html-and-xml.html">HTML 5, one vocabulary, two serializations</a></h3>
<p><p>It seems not very clear for many people. So let's set the record straight. HTML 5 can be written in html <strong>and XML</strong>.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/01/html5-is-html-and-xml.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on January 15, 2008 9:03 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a>, <a href="http://www.w3.org/QA/archive/technology/xml/">XML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/01/html5-is-html-and-xml.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/01/html5-is-html-and-xml.html#comments">Comments (17)</a>
| <a href="http://www.w3.org/QA/2008/01/html5-is-html-and-xml.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2008/01/rdfa_and_html_imagemap.html">RDFa and HTML imagemap</a></h3>
<p><a href="http://www.w3.org/TR/xhtml-rdfa-primer/">RDFa</a> is a way to enrich your Web pages with local data. The clear benefit is that your data are in context and then easier to manage. Yesterday, on the RDFa mailing list, <a href="http://danbri.org/">Dan Brickley</a> asked how we could use <a href="http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2008Jan/0027">RDFa to extract the information</a> of an <a href="http://www.w3.org/TR/html4/struct/objects.html#edef-MAP">HTML imagemap</a>. </p>
<p class="readmore"><a href="http://www.w3.org/QA/2008/01/rdfa_and_html_imagemap.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on January 6, 2008 8:57 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/semantic_web/">Semantic Web</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2008/01/rdfa_and_html_imagemap.html">Permalink</a>
| <a href="http://www.w3.org/QA/2008/01/rdfa_and_html_imagemap.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2008/01/rdfa_and_html_imagemap.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/12/xml-on-web-choice.html">XML On The Web - A Choice</a></h3>
<p><p></p>
<p>The browsers offer one rendered view of information on the Web among many possibilities. JSON, RDF, Atom, plain text, xhtml, html are parts of the choices to represent an information resource. </p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/12/xml-on-web-choice.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on December 25, 2007 12:00 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/xml/">XML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/xml-on-web-choice.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/12/xml-on-web-choice.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/12/xml-on-web-choice.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/12/when_will_html_5_support_soone.html">When will HTML 5 support <video>? Sooner if you help</a></h3>
<p><p> To make the distance to home when I travel a little shorter, for my birthday I got one of these digital picture frames. With a little fiddling, I got the picture and music features working, but I'm stumped on...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/12/when_will_html_5_support_soone.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on December 18, 2007 1:55 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/technology/svg/">SVG</a>, <a href="http://www.w3.org/QA/archive/technology/video/">Video</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/when_will_html_5_support_soone.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/12/when_will_html_5_support_soone.html#comments">Comments (34)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html">On considering the role of W3C Members in Working Group decisions</a></h3>
<p><p>On 29 November 2007, Dan Connolly, co-Chair of the HTML Working Group pointed me to an IRC log of discussion about HTML 5 which prompted this question: is it acceptable to take into consideration the role of each W3C member...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on December 14, 2007 11:12 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/12/on_considering_the_role_of_w3c_1.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html">The Need for Diversity</a></h3>
<p><p>Chris Wilson (Microsoft) in a recent interview with Kevin Yank at Sitepoint stressed the need of diversity for a healthy Web Ecosystem: >Chris Wilson: As for building on WebKit or Gecko or any of the other engines, part of that...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on December 10, 2007 9:10 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2007/12/the_need_for_diversity.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/12/ncz.html">Nicholas Zakas on HTML5</a></h3>
<p><p>Nicholas Zakas works on UI design with the My Yahoo team at Yahoo. He's written a What I'd like to see in HTML 5 posting on his blog....</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/12/ncz.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Michael(tm) Smith</a> on December 7, 2007 10:15 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/ncz.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/12/ncz.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/12/ncz.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/12/dogfood.html">DogFood</a></h3>
<p><p>Sam Ruby initiates an interesting thread on public-html: I took a stab at converting the front page of my weblog to use more features from html5. You can see the results here: http://intertwingly.net/blog/index.html5 But this is clearly just the start....</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/12/dogfood.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Michael(tm) Smith</a> on December 5, 2007 8:20 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/dogfood.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/12/dogfood.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/12/dogfood.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/12/html5preview.html"><cite>Preview of HTML 5</cite> at <cite>A List Apart</cite></a></h3>
<p><p>"Go with the flow and open your mind to HTML 5" is the tagline for issue 250 of the online magazine A List Apart, which features A Preview of HTML 5 -- written by HTML working group member Lachlan Hunt....</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/12/html5preview.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="">Michael(tm) Smith</a> on December 4, 2007 12:58 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/html5preview.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/12/html5preview.html#comments">Comments (7)</a>
| <a href="http://www.w3.org/QA/2007/12/html5preview.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.html">html 5: doctype to version</a></h3>
<p><p>At a regular pace, there are discussions about the [need of versioning for HTML 5](http://www.w3.org/html/wg/tracker/issues/4). The issue breaks down around a few points including identification of the language itself for different kind of user agents, and parser libraries. A while...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on December 2, 2007 10:21 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.html#comments">Comments (5)</a>
| <a href="http://www.w3.org/QA/2007/12/html_5_doctype_to_version.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html">TPAC 2007 - HTML Working Group had informal jamming session!</a></h3>
<p><p>It was intended to be a fun session for the HTML Working Group face to face meeting, but the word spread out and suddenly many people joined us at the room. The jam started and suddenly Tim Berners-Lee joined Dan Connolly, Steven Pemberton, Ian Jacobs, Janet Daly and others on the lyrics...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Mauro/">Mauro Nunez</a> on November 9, 2007 12:19 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2007/11/tpac_2007_html_singalong.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html">TPAC 2007 - HTML Working Group holds first face-to-face meeting</a></h3>
<p><p>The time has come for the much anticipated <a href="http://www.w3.org/html/wg/">HTML Working Group</a> face to face meeting, at the <a href="http://www.w3.org/2007/11/TPAC/overview.html">W3C Technical Plenary / Advisory Committee Meetings Week</a> in Cambridge, MA (USA).</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Mauro/">Mauro Nunez</a> on November 8, 2007 3:11 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2007/11/html_holds_f2f_meeting.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html">TPAC 2007 - URI-Based Extensibility: Benefits, Deviations, Lessons-Learned</a></h3>
<p><p>The Technical plenary day is continuing. Someone in a comment earlier asked what TPAC was. TPAC means Technical Plenary and Advisory Committee meeting. All W3C Working groups and representatives of W3C are meeting. This year we open a bit more...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 7, 2007 3:26 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2007/11/tpac-2007-uri-extensibility.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html">TPAC 2007 - Openness of W3C Working Groups</a></h3>
<p><p>The participants of the W3C tech plenary are back from their lunch overlooking the gorgeous Charles river, to tackle the question of "openness". This is a development from a topic already raised today: a lot of people's lives and living...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on November 7, 2007 1:30 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/11/tpac-2007-openness.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html">TPAC 2007 - HTML 5, XHTML 2.0, Future Formats</a></h3>
<p><p>The title, just by reading it, reminds me of long discussions for the past 6 months as the (interim) HTML WG staff contact. [HTML 5](http://www.w3.org/html/wg/html5/) and [XHTML 2.0](http://www.w3.org/TR/xhtml2/) ; Many fights, many misunderstandings often due to deaf dialogs. Let's hope...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on November 7, 2007 11:24 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/">W3C・QA News</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/11/tpac-2007-html-5-xhtml-20-fun.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/11/the_tracker_tracked.html">The Tracker, Tracked</a></h3>
<p><p>Since W3C launched the new HTML Working Group in March, over 450 people have joined. This is great, but making sense of the thousands of mail messages that followed is too much for any one person. I think the new...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/11/the_tracker_tracked.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Jacobs/">Ian Jacobs</a> on November 2, 2007 6:31 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/11/the_tracker_tracked.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/11/the_tracker_tracked.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/11/the_tracker_tracked.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/10/validator-roadmap.html">Validator 0.8 getting stable - what next?</a></h3>
<p><p>With the <a href="http://lists.w3.org/Archives/Public/www-validator/2007Oct/0058.html">latest release</a>, today, of the markup validator, comes a time to give a look at its <a href="http://validator.w3.org/todo.html">development roadmap</a>. Among the contenders for development time: localization, support for schema languages, and a richer API. Interesting times ahead...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/10/validator-roadmap.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on October 11, 2007 3:45 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/10/validator-roadmap.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/10/validator-roadmap.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2007/10/validator-roadmap.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/10/shorttags.html">Shorttags - the odd side of HTML 4.01</a></h3>
<p><p>Validation can be a very useful way to detect typos in markup... unless the typos disguise as shorttags, one of the little known features of HTML, valid but misunderstood by most browsers. Fortunately, there is hope, whether one prefers to author XHTML and never worry about shorttags, or stick to HTML.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/10/shorttags.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on October 9, 2007 4:42 PM in <a href="http://www.w3.org/QA/archive/w3cqa_news/bugs_life/">Bugs Life</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/10/shorttags.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/10/shorttags.html#comments">Comments (9)</a>
| <a href="http://www.w3.org/QA/2007/10/shorttags.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html">HTML WG in Cambridge, USA - 8-10 November 2007</a></h3>
<p><p>Come and meet the HTML WG in Cambridge, Mass, USA, in November 2007.</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on October 9, 2007 3:00 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/w3c_life/">W3C Life</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/10/html-wg-at-tpac.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/09/setting-default-style-sheet.html">Setting the default style sheet language on your Web site</a></h3>
<p><p>Very often Web creators are using an external style sheet, or a style element to add style information to their html pages. By doing, we specify what is the style language used in the Web page. For example using the...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/09/setting-default-style-sheet.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on September 27, 2007 6:45 AM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/technology/http/">HTTP</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/09/setting-default-style-sheet.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/09/setting-default-style-sheet.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2007/09/setting-default-style-sheet.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/08/xhtml-html-lang-attributes.html">lang attributes accross (X)HTML versions</a></h3>
<p><p> There has been a discussion about lang attributes on the RDFa mailing-list, on what should be used depending on the HTML version. So I have done a bit or research and compilation and here are the results. The lang...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/08/xhtml-html-lang-attributes.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on August 28, 2007 6:40 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/reference/">Reference</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/08/xhtml-html-lang-attributes.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/08/xhtml-html-lang-attributes.html#comments">Comments (5)</a>
| <a href="http://www.w3.org/QA/2007/08/xhtml-html-lang-attributes.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/08/craft-of-html.html">The craft of HTML</a></h3>
<p><a href="http://www.w3.org/html/">HTML</a> is a <strong>practical art</strong>. In a professional context, it requires precise and extensive skills. As with many popular crafts, the vast majority of people do it on their own, but only a few do it for a living. The quality of products varies a lot.<br />
</p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/08/craft-of-html.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on August 8, 2007 3:10 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/tools/">Tools</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/08/craft-of-html.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/08/craft-of-html.html#comments">Comments (11)</a>
| <a href="http://www.w3.org/QA/2007/08/craft-of-html.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/08/iphone_developer_guidelines_pr.html">iPhone Developer Guidelines Promote One Web, Open Standards</a></h3>
<p><p>I was a little nervous to look at <cite><a<br />
href="http://developer.apple.com/iphone/designingcontent.html">iPhone<br />
for Web Developers</a></cite> from the <a<br />
href="http://developer.apple.com/">Apple Developer Connection</a>;<br />
with a splash as big as the iPhone, it seemed inevitable that they'd<br />
cut corners when it came to support for open standards. Surely the <b>Use<br />
Standards and Tried-and-True Design Practices</b> heading was a<br />
tease. But then… wow… </p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/08/iphone_developer_guidelines_pr.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on August 6, 2007 3:39 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/08/iphone_developer_guidelines_pr.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/08/iphone_developer_guidelines_pr.html#comments">Comments (2)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/07/why-html-5-matters.html">Why HTML 5 Specification Matters?</a></h3>
<p><p>This is a simple story. The story of an HTML bug. Like every stories, it could start with… Once upon a time, there was a bug. The bug and its consequences A known HTML page contains a similar piece of...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/07/why-html-5-matters.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 6, 2007 6:30 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/07/why-html-5-matters.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/07/why-html-5-matters.html#comments">Comments (44)</a>
| <a href="http://www.w3.org/QA/2007/07/why-html-5-matters.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/07/html_classes_of_products_and_a.html">HTML Classes of Products and Authoring</a></h3>
<p><p>Rene Saarsoo has published a survey of Coding practices of Web pages. It contains a lot of very useful information for those who try to understand how the Web is authored in the wild. One of the major concerns of...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/07/html_classes_of_products_and_a.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 6, 2007 1:49 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/reference/">Reference</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/07/html_classes_of_products_and_a.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/07/html_classes_of_products_and_a.html#comments">Comments (2)</a>
| <a href="http://www.w3.org/QA/2007/07/html_classes_of_products_and_a.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/07/html-elements-list.html">HTML elements from HTML 3.2 to XHTML 2.0</a></h3>
<p><p>Jens Meiert published recently a very cool list of all HTML elements from HTML 3.2 to XHTML 2.0. It is very interesting to visualize the list of elements. I see a few possible possible improvements on this list. definition of...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/07/html-elements-list.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on July 2, 2007 1:49 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/07/html-elements-list.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/07/html-elements-list.html#comments">Comments (3)</a>
| <a href="http://www.w3.org/QA/2007/07/html-elements-list.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html">The Web as An Ecosystem</a></h3>
<p><p>Don’t you feel sometimes you are in the middle of an action movie and when you have time to rest a bit, you realize that you were running all along. Then the action is restarting. It never stops. So let’s...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 21, 2007 1:39 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html#comments">Comments (5)</a>
| <a href="http://www.w3.org/QA/2007/06/the_web_as_an_ecosystem.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/06/fixing_the_web_together.html">Fixing the Web… Together!</a></h3>
<p><p>Molly Holzschlag recently posted an article about stopping the development on HTML 5 and XHTML 2.0 until implementations are consistent for HTML 4.01 and others. It is surprising because one of the main goals of HTML 5 is exactly this,...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/06/fixing_the_web_together.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 15, 2007 9:52 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/06/fixing_the_web_together.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/06/fixing_the_web_together.html#comments">Comments (25)</a>
| <a href="http://www.w3.org/QA/2007/06/fixing_the_web_together.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/06/html5-call-to-web-professionals.html">Authoring HTML 5 - A Call to Web Professionals</a></h3>
<p><p>Robert recently published his thoughts on HTML 5. In his post, he gives a reference to a post by Roger giving another look at HTML 5. They are both addressing two issues of the work done on HTML: Attitude HTML...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/06/html5-call-to-web-professionals.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on June 8, 2007 5:07 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/06/html5-call-to-web-professionals.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/06/html5-call-to-web-professionals.html#comments">Comments (8)</a>
| <a href="http://www.w3.org/QA/2007/06/html5-call-to-web-professionals.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/05/html_wg_at_xtech_2007.html">HTML WG at XTech 2007.</a></h3>
<p><p>There are a lot of things happening these days. The HTML WG has been relaunched in March with a very open and participative set. We are now a bit more than 400 members and still growing up. There are discussions...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/05/html_wg_at_xtech_2007.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 15, 2007 2:09 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/meetings/">Meetings</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/05/html_wg_at_xtech_2007.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/05/html_wg_at_xtech_2007.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2007/05/html_wg_at_xtech_2007.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.html">HTML and version mechanisms</a></h3>
<p><p>Disclaimer: This article doesn't represent any kind of consensus in the HTML WG. It is an attempt at capturing the different opinions expressed on the mailing-list. There has a been a lot of debate in April on the HTML WG...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 1, 2007 3:29 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.html#comments">Comments (4)</a>
| <a href="http://www.w3.org/QA/2007/05/html_and_version_mechanisms.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/03/meet_the_html_working_group_ch.html">Meet the HTML Working Group chairs in Austin at SxSWi</a></h3>
<p><p>I enjoyed living in Austin and I like to visit when I can. My last trip was more for MIT research stuff; this time it's W3C business. I took SxSWi 2007 off my travel schedule when the TAG scheduled a...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/03/meet_the_html_working_group_ch.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on March 9, 2007 8:03 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/03/meet_the_html_working_group_ch.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/03/meet_the_html_working_group_ch.html#comments">Comments (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/03/watch_out_the_html_page.html">Watch Out The HTML Page</a></h3>
<p><p>In this new space, the HTML home page, I intend to give you information about HTML development as much as possible. I will try to create a space where people will find valuable information about the HTML Working Group work....</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/03/watch_out_the_html_page.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 7, 2007 3:21 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/03/watch_out_the_html_page.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/03/watch_out_the_html_page.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/03/watch_out_the_html_page.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2007/03/new-html-working-wg.html">W3C Launches New HTML Working Group</a></h3>
<p><p>W3C is pleased to announce the new HTML Working Group, chartered to create the next HTML standard with the active participation of browser vendors, software developers, and content designers. "It's time to revisit the standard and see what we can...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2007/03/new-html-working-wg.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on March 7, 2007 8:17 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2007/03/new-html-working-wg.html">Permalink</a>
| <a href="http://www.w3.org/QA/2007/03/new-html-working-wg.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2007/03/new-html-working-wg.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2006/12/reinventing_html_update.html">Reinventing HTML: Update</a></h3>
<p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2006/12/reinventing_html_update.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on December 22, 2006 7:19 PM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/12/reinventing_html_update.html">Permalink</a>
| <a href="http://www.w3.org/QA/2006/12/reinventing_html_update.html#comments">Comments (5)</a>
</p>
<h3><a href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html">Reinventing HTML: discuss</a></h3>
<p><p>By now many have seen Tim Berners-Lee on Reinventing HTML: Making standards is hard work. ... A particular case is HTML... The plan is to charter a completely new HTML group... I'll be asking these groups to be very accountable,...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/Connolly/">Dan Connolly</a> on October 28, 2006 1:23 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html">Permalink</a>
| <a href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html#comments">Comments (52)</a>
| <a href="http://www.w3.org/QA/2006/10/reinventing_html_discuss.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2006/07/xhtml_and_svg.html">Combining XHTML and SVG (and MathML) (and XForms) (and...)</a></h3>
<p><p>A reader asked us recently whether there existed a profile to easily combine XHTML and SVG. The short answer is, yes, there is. The slightly longer answer is that indeed, in 2002, the W3C SVG and HTML working groups got...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2006/07/xhtml_and_svg.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/olivier/">olivier Théreaux</a> on July 5, 2006 6:45 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/07/xhtml_and_svg.html">Permalink</a>
| <a href="http://www.w3.org/QA/2006/07/xhtml_and_svg.html#comments">Comments (1)</a>
| <a href="http://www.w3.org/QA/2006/07/xhtml_and_svg.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2006/02/ruby_annotation_to_change_the.html">Ruby Annotation Under The Sunlight</a></h3>
<p><p>(Updated on Friday 3 February 2006 to add valuable source of information given by Richard Ishida) In the concepts of microformats, there is a key concept which is design for humans first, machines second. We have often been faced to...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2006/02/ruby_annotation_to_change_the.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on February 2, 2006 10:47 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/technology_101/">Technology 101</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/02/ruby_annotation_to_change_the.html">Permalink</a>
| <a href="http://www.w3.org/QA/2006/02/ruby_annotation_to_change_the.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2006/01/failed_commitments.html">Failed Commitments?</a></h3>
<p><p>Do you remember? it was just three years ago or so. There were parades and brass bands. Many large Web sites were, at long last, making the switch to Web standards. For example, the Web designer Douglas Bowman was announcing...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2006/01/failed_commitments.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on January 30, 2006 1:12 AM in <a href="http://www.w3.org/QA/archive/technology/css/">CSS</a>, <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/web_spotting/opinions_editorial/">Opinions & Editorial</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2006/01/failed_commitments.html">Permalink</a>
| <a href="http://www.w3.org/QA/2006/01/failed_commitments.html#comments">Comments (16)</a>
| <a href="http://www.w3.org/QA/2006/01/failed_commitments.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2005/05/wasp_asks_w3c_adding_multimedi.html">“WaSP asks W3C", Adding Multimedia in Web Documents (part 2) published</a></h3>
<p><p>Last week, in a new instance of the WaSP asks W3C project, the QA Team completed its answer on Adding Multimedia in Web Documents with more details on the use and implementation of the object tag in HTML. Discussion and...</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2005/05/wasp_asks_w3c_adding_multimedi.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 31, 2005 12:50 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/publications/">Publications</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2005/05/wasp_asks_w3c_adding_multimedi.html">Permalink</a>
| <a href="http://www.w3.org/QA/2005/05/wasp_asks_w3c_adding_multimedi.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2005/05/wasp_asks_w3c_adding_multimedi.html#trackback">TrackBacks (0)</a>
</p>
<h3><a href="http://www.w3.org/QA/2005/05/more_about_custom_dtd_article.html">“More About Custom DTD" article published in A List Apart</a></h3>
<p><p>The QA Team has written an article for A List Apart, entitled More About Custom DTDs, explaining when custom DTDs make sense, and when they don't....</p></p>
<p class="readmore"><a href="http://www.w3.org/QA/2005/05/more_about_custom_dtd_article.html">» Read on...</a></p>
<p class="postinfo">Filed by <a href="http://www.w3.org/People/karl/">Karl Dubost</a> on May 11, 2005 12:57 AM in <a href="http://www.w3.org/QA/archive/technology/html/">HTML</a>, <a href="http://www.w3.org/QA/archive/w3cqa_news/publications/">Publications</a>, <a href="http://www.w3.org/QA/archive/web_spotting/tutorials/">Tutorials</a><br />
<span class="separator">|</span> <a class="permalink" href="http://www.w3.org/QA/2005/05/more_about_custom_dtd_article.html">Permalink</a>
| <a href="http://www.w3.org/QA/2005/05/more_about_custom_dtd_article.html#comments">Comments (0)</a>
| <a href="http://www.w3.org/QA/2005/05/more_about_custom_dtd_article.html#trackback">TrackBacks (0)</a>
</p>
<p id="gentime">This page was last generated on $Date: 2011/12/23 08:27:07 $</p>
</div><!-- End of "main" DIV. -->
<address>
This blog is written by W3C staff and working group participants,<br />
and maintained by <a href="/People/CMercier/">Coralie Mercier</a>.<br />
Authorized parties may <a href="/QA/new">log in</a> to create a new entry.<br/>
<span id="poweredby">Powered by Movable Type, magpierss and a lot of Web Technology</span>
</address>
<p class="copyright">
<a rel="Copyright" href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 1994-2011
<a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a>®
(<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>,
<a href="http://www.ercim.eu/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>,
<a href="http://www.keio.ac.jp/">Keio</a>),
All Rights Reserved.
W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
<a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>,
<a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a>
and <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-software">software licensing</a>
rules apply. Your interactions with this site are in accordance
with our <a href="http://www.w3.org/Consortium/Legal/privacy-statement#Public">public</a> and
<a href="http://www.w3.org/Consortium/Legal/privacy-statement#Members">Member</a> privacy
statements.
</p>
</body>
</html>