| 12
 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
 1699
 1700
 1701
 1702
 1703
 1704
 1705
 1706
 1707
 1708
 1709
 1710
 1711
 1712
 1713
 1714
 1715
 1716
 1717
 1718
 1719
 1720
 1721
 1722
 1723
 1724
 1725
 1726
 1727
 1728
 1729
 1730
 1731
 1732
 1733
 1734
 1735
 1736
 1737
 1738
 1739
 1740
 1741
 1742
 1743
 1744
 1745
 1746
 1747
 1748
 1749
 1750
 1751
 1752
 1753
 1754
 1755
 1756
 1757
 1758
 1759
 1760
 1761
 1762
 1763
 1764
 1765
 1766
 1767
 1768
 1769
 1770
 1771
 1772
 1773
 1774
 1775
 1776
 1777
 1778
 1779
 1780
 1781
 1782
 1783
 1784
 1785
 1786
 1787
 1788
 1789
 1790
 1791
 1792
 1793
 1794
 1795
 1796
 1797
 1798
 1799
 1800
 1801
 1802
 1803
 1804
 1805
 1806
 1807
 1808
 1809
 1810
 1811
 1812
 1813
 1814
 1815
 1816
 1817
 1818
 1819
 1820
 1821
 1822
 1823
 1824
 1825
 1826
 1827
 1828
 1829
 1830
 1831
 1832
 1833
 1834
 1835
 1836
 1837
 1838
 1839
 1840
 1841
 1842
 1843
 1844
 1845
 1846
 1847
 1848
 1849
 1850
 1851
 1852
 1853
 1854
 1855
 1856
 1857
 1858
 1859
 1860
 1861
 1862
 1863
 1864
 1865
 1866
 1867
 1868
 1869
 1870
 1871
 1872
 1873
 1874
 1875
 1876
 1877
 1878
 1879
 1880
 1881
 1882
 1883
 1884
 1885
 1886
 1887
 1888
 1889
 1890
 1891
 1892
 1893
 1894
 1895
 1896
 1897
 1898
 1899
 1900
 1901
 1902
 1903
 1904
 1905
 1906
 1907
 1908
 1909
 1910
 1911
 1912
 1913
 1914
 1915
 1916
 1917
 1918
 1919
 1920
 1921
 1922
 1923
 1924
 1925
 1926
 1927
 1928
 1929
 1930
 1931
 1932
 1933
 1934
 1935
 1936
 1937
 1938
 1939
 1940
 1941
 1942
 1943
 1944
 1945
 1946
 1947
 1948
 1949
 1950
 1951
 1952
 1953
 1954
 1955
 1956
 1957
 1958
 1959
 1960
 1961
 1962
 1963
 1964
 1965
 1966
 1967
 1968
 1969
 1970
 1971
 1972
 1973
 1974
 1975
 1976
 1977
 1978
 1979
 1980
 1981
 1982
 1983
 1984
 1985
 1986
 1987
 1988
 1989
 1990
 1991
 1992
 1993
 1994
 1995
 1996
 1997
 1998
 1999
 2000
 2001
 2002
 2003
 2004
 2005
 2006
 2007
 2008
 2009
 2010
 2011
 2012
 2013
 2014
 2015
 2016
 2017
 2018
 2019
 2020
 2021
 2022
 2023
 2024
 2025
 2026
 2027
 2028
 2029
 2030
 2031
 2032
 2033
 2034
 2035
 2036
 2037
 2038
 2039
 2040
 2041
 2042
 2043
 2044
 2045
 2046
 2047
 2048
 2049
 2050
 2051
 2052
 2053
 2054
 2055
 2056
 2057
 2058
 2059
 2060
 2061
 2062
 2063
 2064
 2065
 2066
 2067
 2068
 2069
 2070
 2071
 2072
 2073
 2074
 2075
 2076
 2077
 2078
 2079
 2080
 2081
 2082
 2083
 2084
 2085
 2086
 2087
 2088
 2089
 2090
 2091
 2092
 2093
 2094
 2095
 2096
 2097
 2098
 2099
 2100
 2101
 2102
 2103
 2104
 2105
 2106
 2107
 2108
 2109
 2110
 2111
 2112
 2113
 2114
 2115
 2116
 2117
 2118
 2119
 2120
 2121
 2122
 2123
 2124
 2125
 2126
 2127
 2128
 2129
 2130
 2131
 2132
 2133
 2134
 2135
 2136
 2137
 2138
 2139
 2140
 2141
 2142
 2143
 2144
 2145
 2146
 2147
 2148
 2149
 2150
 2151
 2152
 2153
 2154
 2155
 2156
 2157
 2158
 2159
 2160
 2161
 2162
 2163
 2164
 2165
 2166
 2167
 2168
 2169
 2170
 2171
 2172
 2173
 2174
 2175
 2176
 2177
 2178
 2179
 2180
 2181
 2182
 2183
 2184
 2185
 2186
 2187
 2188
 2189
 2190
 2191
 2192
 2193
 2194
 2195
 2196
 2197
 2198
 2199
 2200
 2201
 2202
 2203
 2204
 2205
 2206
 2207
 2208
 2209
 2210
 2211
 2212
 2213
 2214
 2215
 2216
 2217
 2218
 2219
 2220
 2221
 2222
 2223
 2224
 2225
 2226
 2227
 2228
 2229
 2230
 2231
 2232
 2233
 2234
 2235
 2236
 2237
 2238
 2239
 2240
 2241
 2242
 2243
 2244
 2245
 2246
 2247
 2248
 2249
 2250
 2251
 2252
 2253
 2254
 2255
 2256
 2257
 2258
 2259
 2260
 2261
 2262
 2263
 2264
 2265
 2266
 2267
 2268
 2269
 2270
 2271
 2272
 2273
 2274
 2275
 2276
 2277
 2278
 2279
 2280
 2281
 2282
 2283
 2284
 2285
 2286
 2287
 2288
 2289
 2290
 2291
 2292
 2293
 2294
 2295
 2296
 2297
 2298
 2299
 2300
 2301
 2302
 2303
 2304
 2305
 2306
 2307
 2308
 2309
 2310
 2311
 2312
 2313
 2314
 2315
 2316
 2317
 2318
 2319
 2320
 2321
 2322
 2323
 2324
 2325
 2326
 2327
 2328
 2329
 2330
 2331
 2332
 2333
 2334
 2335
 2336
 2337
 2338
 2339
 2340
 2341
 2342
 2343
 2344
 2345
 2346
 2347
 2348
 2349
 2350
 2351
 2352
 2353
 2354
 2355
 2356
 2357
 2358
 2359
 2360
 2361
 2362
 2363
 2364
 2365
 2366
 2367
 2368
 2369
 2370
 2371
 2372
 2373
 2374
 2375
 2376
 2377
 2378
 2379
 2380
 2381
 2382
 2383
 2384
 2385
 2386
 2387
 2388
 2389
 2390
 2391
 2392
 2393
 2394
 2395
 2396
 2397
 2398
 2399
 2400
 2401
 2402
 2403
 2404
 2405
 2406
 2407
 2408
 2409
 2410
 2411
 2412
 2413
 2414
 2415
 2416
 2417
 2418
 2419
 2420
 2421
 2422
 2423
 2424
 2425
 2426
 2427
 2428
 2429
 2430
 2431
 2432
 2433
 2434
 2435
 2436
 2437
 2438
 2439
 2440
 2441
 2442
 2443
 2444
 2445
 2446
 2447
 2448
 2449
 2450
 2451
 2452
 2453
 2454
 2455
 2456
 2457
 2458
 2459
 2460
 2461
 2462
 2463
 2464
 2465
 2466
 2467
 2468
 2469
 2470
 2471
 2472
 2473
 2474
 2475
 2476
 2477
 2478
 2479
 2480
 2481
 2482
 2483
 2484
 2485
 2486
 2487
 2488
 2489
 2490
 2491
 2492
 2493
 2494
 2495
 2496
 2497
 2498
 2499
 2500
 2501
 2502
 2503
 2504
 2505
 2506
 2507
 2508
 2509
 2510
 2511
 2512
 2513
 2514
 2515
 2516
 2517
 2518
 2519
 2520
 2521
 2522
 2523
 2524
 2525
 2526
 2527
 2528
 2529
 2530
 2531
 2532
 2533
 2534
 2535
 2536
 2537
 2538
 2539
 2540
 2541
 2542
 2543
 2544
 2545
 2546
 2547
 2548
 2549
 2550
 2551
 2552
 2553
 2554
 2555
 2556
 2557
 2558
 2559
 2560
 2561
 2562
 2563
 2564
 2565
 2566
 2567
 2568
 2569
 2570
 2571
 2572
 2573
 2574
 2575
 2576
 2577
 2578
 2579
 2580
 2581
 2582
 2583
 2584
 2585
 2586
 2587
 2588
 2589
 2590
 2591
 2592
 2593
 2594
 2595
 2596
 2597
 2598
 2599
 2600
 2601
 2602
 2603
 2604
 2605
 2606
 2607
 2608
 2609
 2610
 2611
 2612
 2613
 2614
 2615
 2616
 2617
 2618
 2619
 2620
 2621
 2622
 2623
 2624
 2625
 2626
 2627
 2628
 2629
 2630
 2631
 2632
 2633
 2634
 2635
 2636
 2637
 2638
 2639
 2640
 2641
 2642
 2643
 2644
 2645
 2646
 2647
 2648
 2649
 2650
 2651
 2652
 2653
 2654
 2655
 2656
 2657
 2658
 2659
 2660
 2661
 2662
 2663
 2664
 2665
 2666
 2667
 2668
 2669
 2670
 2671
 2672
 2673
 2674
 2675
 2676
 2677
 2678
 2679
 2680
 2681
 2682
 2683
 2684
 2685
 2686
 2687
 2688
 2689
 2690
 2691
 2692
 2693
 2694
 2695
 2696
 2697
 2698
 2699
 2700
 2701
 2702
 2703
 2704
 2705
 2706
 2707
 2708
 2709
 2710
 2711
 2712
 2713
 2714
 2715
 2716
 2717
 2718
 2719
 2720
 2721
 2722
 2723
 2724
 2725
 2726
 2727
 2728
 2729
 2730
 2731
 2732
 2733
 2734
 2735
 2736
 2737
 2738
 2739
 2740
 2741
 2742
 2743
 2744
 2745
 2746
 2747
 2748
 2749
 2750
 2751
 2752
 2753
 2754
 2755
 2756
 2757
 2758
 2759
 2760
 2761
 2762
 2763
 2764
 2765
 2766
 2767
 2768
 2769
 2770
 2771
 2772
 2773
 2774
 2775
 2776
 2777
 2778
 2779
 2780
 2781
 2782
 2783
 2784
 2785
 2786
 2787
 2788
 2789
 2790
 2791
 2792
 2793
 2794
 2795
 2796
 2797
 2798
 2799
 2800
 2801
 2802
 2803
 2804
 2805
 2806
 2807
 2808
 2809
 2810
 2811
 2812
 2813
 2814
 2815
 2816
 2817
 2818
 2819
 2820
 2821
 2822
 2823
 2824
 2825
 2826
 2827
 2828
 2829
 2830
 2831
 2832
 2833
 2834
 2835
 2836
 2837
 2838
 2839
 2840
 2841
 2842
 2843
 2844
 2845
 2846
 2847
 2848
 2849
 2850
 2851
 2852
 2853
 2854
 2855
 2856
 2857
 2858
 2859
 2860
 2861
 2862
 2863
 2864
 2865
 2866
 2867
 2868
 2869
 2870
 2871
 2872
 2873
 2874
 2875
 2876
 2877
 2878
 2879
 2880
 2881
 2882
 2883
 2884
 2885
 2886
 2887
 2888
 2889
 2890
 2891
 2892
 2893
 2894
 2895
 2896
 2897
 2898
 2899
 2900
 2901
 2902
 2903
 2904
 2905
 2906
 2907
 2908
 2909
 2910
 2911
 2912
 2913
 2914
 2915
 2916
 2917
 2918
 2919
 2920
 2921
 2922
 2923
 2924
 2925
 2926
 2927
 2928
 2929
 2930
 2931
 2932
 2933
 2934
 2935
 2936
 2937
 2938
 2939
 2940
 2941
 2942
 2943
 2944
 2945
 2946
 2947
 2948
 2949
 2950
 2951
 2952
 2953
 2954
 2955
 2956
 2957
 2958
 2959
 2960
 2961
 2962
 2963
 2964
 2965
 2966
 2967
 2968
 2969
 2970
 2971
 2972
 2973
 2974
 2975
 2976
 2977
 2978
 2979
 2980
 2981
 2982
 2983
 2984
 2985
 2986
 2987
 2988
 2989
 2990
 2991
 2992
 2993
 2994
 2995
 2996
 2997
 2998
 2999
 3000
 3001
 3002
 3003
 3004
 3005
 3006
 3007
 3008
 3009
 3010
 3011
 3012
 3013
 3014
 3015
 3016
 3017
 3018
 3019
 3020
 3021
 3022
 3023
 3024
 3025
 3026
 3027
 3028
 3029
 3030
 3031
 3032
 3033
 3034
 3035
 3036
 3037
 3038
 3039
 3040
 3041
 3042
 3043
 3044
 3045
 3046
 3047
 3048
 3049
 3050
 3051
 3052
 3053
 3054
 3055
 3056
 3057
 3058
 3059
 3060
 3061
 3062
 3063
 3064
 3065
 3066
 3067
 3068
 3069
 3070
 3071
 3072
 3073
 3074
 3075
 3076
 3077
 3078
 3079
 3080
 3081
 3082
 3083
 3084
 3085
 3086
 3087
 3088
 3089
 3090
 3091
 3092
 3093
 3094
 3095
 3096
 3097
 3098
 3099
 3100
 3101
 3102
 3103
 3104
 3105
 3106
 3107
 3108
 3109
 3110
 3111
 3112
 3113
 3114
 3115
 3116
 3117
 3118
 3119
 3120
 3121
 3122
 3123
 3124
 3125
 3126
 3127
 3128
 3129
 3130
 3131
 3132
 3133
 3134
 3135
 3136
 3137
 3138
 3139
 3140
 3141
 3142
 3143
 3144
 3145
 3146
 3147
 3148
 3149
 3150
 3151
 3152
 3153
 3154
 3155
 3156
 3157
 3158
 3159
 3160
 3161
 3162
 3163
 3164
 3165
 3166
 3167
 3168
 3169
 3170
 3171
 3172
 3173
 3174
 3175
 3176
 3177
 3178
 3179
 3180
 3181
 3182
 3183
 3184
 3185
 3186
 3187
 3188
 3189
 3190
 3191
 3192
 3193
 3194
 3195
 3196
 3197
 3198
 3199
 3200
 3201
 3202
 3203
 3204
 3205
 3206
 3207
 3208
 3209
 3210
 3211
 3212
 3213
 3214
 3215
 3216
 3217
 3218
 3219
 3220
 3221
 3222
 3223
 3224
 3225
 3226
 3227
 3228
 3229
 3230
 3231
 3232
 3233
 3234
 3235
 3236
 3237
 3238
 3239
 3240
 3241
 3242
 3243
 3244
 3245
 3246
 3247
 3248
 3249
 3250
 3251
 3252
 3253
 3254
 3255
 3256
 3257
 3258
 3259
 3260
 3261
 3262
 
 |  
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<!-- Thanks for reading the source of this document. Hope you enjoy -->
<!-- what you find here. Please let me know if you find any errors. -->
<HEAD>
<TITLE>Wilbur - HTML 3.2</TITLE>
<META NAME="description" CONTENT="Wilbur is the name for the next HTML standard (3.2). Here you can find all the tags in this proposal, including tips on usage and limitations.">
<META NAME="keywords" CONTENT="html authoring, reference, wilbur, tag overview">
<META NAME="generator" CONTENT="Orb v1.3 for OS/2">
<META NAME="author" CONTENT="Arnoud Engelfriet">
<LINK REV="made" HREF="mailto:galactus@htmlhelp.com" TITLE="Wilbur feedback">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080"
ALINK="#000080">
<H1 ALIGN=CENTER>Wilbur - HTML 3.2</H1>
For the latest version of this overview, please refer to the WDG's
Wilbur reference at <URL:<A HREF="http://www.htmlhelp.com/reference/wilbur/">http://www.htmlhelp.com/reference/wilbur/</A>>
<HR>
<H2>Syntax rules</H2>
<P>
In this <A HREF="./overview.html">overview of tags</A>, I have
used some simple rules to make the syntax clear. It also allows me to
provide the information in a short format.
<P>
To illustrate the syntax rules, here's the section on <A HREF="./special/img.html">IMG</A>:
<HR>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><IMG SRC=<CODE>URL</CODE>><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP><B>SRC=<CODE>URL</CODE></B>, ALT=<CODE>string</CODE>, ALIGN=left|right|top|middle|bottom, HEIGHT=<CODE>n</CODE>, WIDTH=<CODE>n</CODE>, BORDER=<CODE>n</CODE>, HSPACE=<CODE>n</CODE>, VSPACE=<CODE>n</CODE>, USEMAP=<CODE>URL</CODE>, ISMAP<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/p.html">P</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A> as well as <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./head/script.html">SCRIPT</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
</TABLE>
<HR>
<P>
The first section, <EM>Appearance</EM>, gives a common way to use this
tag. As you can see here, the <A HREF="./special/img.html">IMG</A> tag does not have an ending tag.
If the beginning or ending tag appears inside square brackets, it is
optional and may be left off.
<P>
The next section describes the <A
HREF="../../glossary/glossary.html#attribute">attributes</A> for the <A HREF="./special/img.html">IMG</A> tag.
If an attribute appears in <B>bold</B>, it is required, otherwise it
may be omitted. In the above
case, SRC is required, but the other attributes are not. Note that
the attributes themselves are listed in all caps, and the possible
values (if possible) in lower case. Note that an attribute value
<EM>must</EM> be quoted if it contains more than just letters, digits,
hyphens and periods.
<P>
The <EM>contents</EM> section describes which tags are permitted inside
this tag. For <A HREF="./special/img.html">IMG</A>, there are none. And last, you can see which tags
allow <A HREF="./special/img.html">IMG</A> inside them.
<P>
The attributes and their values are noted in a very compact format as
well. The "|" character is used to separate mutually exclusive
attributes or values. For example, <CODE>A=foo|bar</CODE> indicates
that attribute "A" may get foo or bar as value, but not both, or
anything else. <CODE>A=<CODE>string</CODE>|B=<CODE>string</CODE></CODE> indicates
that you may use either A <EM>or</EM> B, but not both.
<P>
If an attribute can take more possible values than can be given in a
list, the following special symbols are used:
<DL>
<DT><CODE>n</CODE>
<DD>A number. It must be an integer, and not have a "-" or "+" sign
prepended. Numbers do not have to be enclosed in quotes.
<DT><CODE>p%</CODE>
<DD>A percentage. The percentage must also be an integer. Exactly
what the percentage applies to depends on the tag. Percentages must
be enclosed in quotes.
<DT><CODE>URL</CODE>
<DD>An URL. This can be an absolute or a relative URL, depending on
the situation. In most cases, both are permitted. It is recommended
that URLs always be enclosed in quotes.
<DT><CODE>string</CODE>
<DD>A string of characters. Any character is permitted, including
entities. It is recommended that strings are always enclosed in
quotes.
<DT><CODE>#RRGGBB</CODE>
<DD>A color code, in hexadecimal notation. The color is constructed
in the red-green-blue format. Each part gets a hexadecimal number
between 00 and FF, and it should be given in two digits at all times.
Note that a color code must have a # as the first character, and
it must be enclosed in quotes.
</DL>
<HR>
<H2>ADDRESS - Address information</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><ADDRESS> </ADDRESS><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/p.html">P</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The ADDRESS tag should be used to enclose contact information, addresses and
the likes. It is often rendered with a slightly indented left margin and
italics.
  <H3>Notes:</H3>
<UL>
<LI>If you include an address in here, be sure to use <A HREF="./special/br.html">BR</A> for explicit
linebreaks after every line, otherwise the address won't come out right.
</UL>
<HR>
<H2>APPLET - Java applet</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><APPLET CODE=<CODE>string</CODE> HEIGHT=<CODE>n</CODE> WIDTH=<CODE>n</CODE>> </APPLET><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>CODEBASE=<CODE>URL</CODE>, <B>CODE=<CODE>string</CODE></B>, NAME=<CODE>string</CODE>, ALT=<CODE>string</CODE>, ALIGN=left|right|top|middle|bottom, <B>HEIGHT=<CODE>n</CODE>, WIDTH=<CODE>n</CODE></B>, HSPACE=<CODE>n</CODE>, VSPACE=<CODE>n</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./special/param.html">PARAM</A> and <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The APPLET tag is used to include Java applets. The CODE attribute
indicates the location of the class of the applet itself. CODEBASE can be
used to specify an absolute URL for the applet, similar to the <A HREF="./head/base.html">BASE</A>
element for HTML documents. Other classes for this applet will be searched
at the location indicated in CODEBASE. If this is not specified, the
current URL will be used for the location. The NAME attribute gives the 
name of the applet.
<P>
Just like with <A HREF="./special/img.html">IMG</A>, WIDTH and HEIGHT are used to specify the
width and height of the applet's window, and HSPACE and VSPACE control
horizontal and vertical spacing around the applet. ALIGN sets the
horizontal or vertical alignment for the applet.
<P>
Arguments to the applet can be specified with the <A HREF="./special/param.html">PARAM</A> tag, which
goes inside the APPLET tag.
<P>
The ALT text may contain text which should be displayed if the applet
cannot be run, but you should use the contents of APPLET instead. In
here you may use markup, so you can provide a better alternative than
with the ALT text.
  <H3>Notes:</H3>
<UL>
<LI>Not all browsers support Java applets, and those that do often allow
the user to disable it.
<LI>Always provide alternative text, so your visitors get
<EM>something</EM> when they can't see the applet.
</UL>
<HR>
<H2>AREA - Client-side imagemap hotspot</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><AREA SHAPE=x HREF=<CODE>URL</CODE> COORDS=<CODE>string</CODE> ALT=<CODE>string</CODE>><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>SHAPE=rect|circle|poly|default, COORDS=<CODE>string</CODE>, NOHREF|HREF=<CODE>URL</CODE>, <B>ALT=<CODE>string</CODE></B><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./special/map.html">MAP</A>.<BR></TD>
</TR>
</TABLE>
<P>
Inside the <A HREF="./special/map.html">MAP</A> tag, each "hotzone" in the client-side imagemap is
defined with an AREA tag. The HREF attribute specifies the URL for the
destination that should be chosen if this area was selected. If you
specify NOHREF instead, this area won't do anything. 
<P>
SHAPE and COORDS define the actual region. SHAPE can be a rectangle,
circle, or polygon, and COORDS should contain a set of coordinates
describing that shape. This is done with a comma separated list of
numbers, enclosed in quotes. If SHAPE is set to DEFAULT, no coordinates
need to be specified. The default area is what will be chosen if no
others match. The syntax for COORDS depends on what shape you choose.
<DL>
<DT><STRONG>rect</STRONG> - rectangle
<DD>A rectangle has four coordinates. The first specifies the top left
corner, and the second the bottom right corner of the rectangle. For example,
<CODE><AREA SHAPE=rect COORDS="0,0,9,9"></CODE> would specify
a rectangle of 10x10 pixels, starting in the top left corner of the image.
<DT><STRONG>circle</STRONG> - circle
<DD>A circle is defined by its center and radius. The COORDS attribute
first specifies the coordinates of the center, and then the radius of
the circle, in pixels. For example, <CODE><AREA SHAPE=circle
COORDS="10,10,5"></CODE> would specify a circle with radius 5 at
location (10,10) in the image.
<DT><STRONG>poly</STRONG> - polygon
<DD>A polygon is built up by a list of coordinates. They are all
connected in the order you present, and the last coordinate pair is
connected to the first. This way you can build arbitrary figures.
For example, <CODE><AREA SHAPE=poly COORDS="10,50,15,20,20,50"></CODE>
would specify a triangle, with edge locations (10,50), (15,20) and (20,50).
<DT><STRONG>default</STRONG> - default
<DD>The default location doesn't have any coordinates, and it should be
used only once in the map. It is used to indicate what should happen if
the user selects one of the coordinates which are not defined in any of
the other elements.
</DL>
<P>
The ALT text is used by text browsers to present the URLs in
the imagemap in a more readable fashion. If you leave those off,
the browser can only display the "bare" URLs. The ALT text is
<EM>required</EM> if you want your document to be valid.
  <H3>Notes:</H3>
<UL>
<LI>Coordinates are specified in X,Y order: COORDS="1,0,10,19" means
from X=1, Y=0 to X=10, Y=19. The top left corner is (0,0).
<LI>If you have an area which should not do anything, not even go to
the URL specified in the default area, use NOHREF.
<LI>Just like with <A HREF="./special/img.html">IMG</A>, there can be no markup inside the ALT
attribute.
</UL>
<HR>
<H2>A - Hyperlinks</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><A HREF=<CODE>URL</CODE>> </A><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>HREF=<CODE>URL</CODE>, NAME=<CODE>string</CODE>, REL=<CODE>string</CODE>, REV=<CODE>string</CODE>, TITLE=<CODE>string</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The anchor tag is the "glue" for hypertext documents. The enclosed text
and/or image(s) will be selectable by the user, and doing so will take
the user to the location specified in the HREF attribute. The TITLE
attribute can be used to provide a description of that location, which
is displayed by some browsers when the mouse moves over the URL.
<P>
The NAME attribute is used to set up "named anchors." The enclosed text
will be marked as a "target" to which a browser can jump directly. For
example, if you have "<A NAME="toc">Table of Contents</A>"
somewhere in the document,
and the user selects the URL "#toc" he will be taken to that line.
<P>
REL and REV are not widely used, although these attributes were already
present in the HTML 2.0 specs.
They are used to mark up relationships between the current document
and the resource in the link. REL="foo" in document A, in a link
pointing to B, indicates that document A has a relationship of "foo"
with document B. REV="foo" indicates B has that relationship with A.
Since these attributes are not widely used, there is no standard list
of values for REL and REV.
  <H3>Notes:</H3>
<UL>
<LI>Be sure to close the quotes around the value in HREF. Older browsers
were often quite forgiving about them, but as this caused other problems,
it was fixed in newer releases. This means that a hyperlink with an
unclosed quote may not work correctly.
<LI>You may not nest anchors, not even if one uses the HREF and the
other uses the NAME attribute.
<LI>The A element used with the NAME attribute requires a closing
tag and non-empty content.
<LI>TITLE is most often used for mailto URLs, where it is used to set
the subject of the message. Some browsers also use it if you bookmark
the link.
<LI>Since you cannot nest anchors, you can't hyperlink a named anchor.
You can however combine the NAME and HREF anchors into one anchor;
<A NAME="foo" HREF="bar">text</A> works just fine.
</UL>
<HR>
<H2>BASEFONT - Default font size</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><BASEFONT SIZE=<CODE>n</CODE>><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>SIZE=<CODE>n</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The BASEFONT tag is used to suggest a default font size. <A HREF="./special/font.html">FONT</A>
tags using a relative font size will use the value set here.
The SIZE attribute is an integer value ranging
from 1 to 7. The base font size applies to the normal and preformatted
text but not to headings, except where these are modified using the
FONT element with a relative font size.
  <H3>Notes:</H3>
<UL>
<LI>Do not use <A HREF="./special/font.html">FONT</A> or BASEFONT to manipulate the font appearance,
use <A HREF="./font/big.html">BIG</A> and <A HREF="./font/small.html">SMALL</A> for local changes, and style sheets as a
more general solution.
</UL>
<HR>
<H2>BASE - Document location</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><BASE HREF=<CODE>URL</CODE>><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP><B>HREF=<CODE>URL</CODE></B><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./head/head.html">HEAD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The BASE tag is used to indicate the correct location of the document.
Normally, the browser already knows this location. But in cases such
as a mirrored site, the URL used to get the document is not the one
that should be used when resolving relative URLs. That's when you use
the BASE tag. The required HREF attribute must contain a full URL
which lists the real location of the document.
<P>
For example, in a document which contains
<CODE><BASE HREF="http://www.htmlhelp.com/"></CODE>,
the relative URL in <CODE><IMG SRC="icon/wdglogo.gif"></CODE>
corresponds with the full URL <B>http://www.htmlhelp.com/icon/wdglogo.gif</B>.
  <H3>Notes:</H3>
<UL>
<LI>It is not necessary to include this tag; use it only if relative
URLs won't work otherwise.
</UL>
<HR>
<H2>BIG - Larger text</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><BIG> </BIG><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The BIG tag (as well as <A HREF="./font/small.html">SMALL</A>) is new. A browser should draw the
enclosed text in a larger font if available, and ignore the tag otherwise.
Since this tag is new, support for it is not universal. The <A HREF="./special/font.html">FONT</A> tag
can do the same, with SIZE="+1".
  <H3>Notes:</H3>
<UL>
<LI>Nesting BIG tags may produce text in a larger font than with just
one BIG tag, but this is not required by the specs (although it is
recommended).
<LI>It is legal to nest BIG and <A HREF="./font/small.html">SMALL</A>, although the results are
undefined.
<LI>BIG is not supported by all browsers, so you might want to use
<<A HREF="./special/font.html">FONT</A> SIZE="+1"> instead.
</UL>
<HR>
<H2>BLOCKQUOTE - Large quotations</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><BLOCKQUOTE> </BLOCKQUOTE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/p.html">P</A>, <A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./list/dl.html">DL</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./block/hr.html">HR</A>, <A HREF="./table/table.html">TABLE</A>, <A HREF="./block/address.html">ADDRESS</A> as well as <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
If you are quoting more than a few lines from a document, use a
BLOCKQUOTE to indicate this. Block quotations are often rendered with indented
margins, and possibly in italics, although a rendering with the standard
quotation symbol for E-mail, "> ", is of course also possible.
  <H3>Notes:</H3>
<UL>
<LI>If you quote from someone else's work, don't forget to include a
credit and/or copyright notice.
<LI>Do not use BLOCKQUOTE simply to create indented text. This is not
the required rendering, so you will not achieve the effect you want
on all browsers. It will also confuse page indexers and summarizers.
</UL>
<HR>
<H2>BODY - Document body</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP>[<BODY>] [</BODY>]<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>BACKGROUND=<CODE>URL</CODE>, BGCOLOR=<CODE>#RRGGBB</CODE>, TEXT=<CODE>#RRGGBB</CODE>, LINK=<CODE>#RRGGBB</CODE>, VLINK=<CODE>#RRGGBB</CODE>, ALINK=<CODE>#RRGGBB</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/p.html">P</A>, <A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./list/dl.html">DL</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./block/hr.html">HR</A>, <A HREF="./table/table.html">TABLE</A>, <A HREF="./block/address.html">ADDRESS</A> as well as <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/html.html">HTML</A>.<BR></TD>
</TR>
</TABLE>
<P>
The BODY tag contains the actual contents of the document. That contents
should consist of <A HREF="./block/index.html">block elements</A> only. You
may put in <A HREF="./misc/pcdata.html">plain text</A> in the body, this is then assumed to be inside
a <A HREF="./block/p.html">P</A> container.
<P>
The attributes contain the appearance of the document. The BACKGROUND
attribute should point to the location of an image, which is used as
the (tiled) background of the document. The other attributes set the
colors for the background, text, links, visited links and active (currently
being selected) links, using the order above. 
<P>
The color is composed
by specifying the red, green and blue components of the color in
hexadecimal notation, with a # in front. For example, to specify white,
the red, green and blue components are 255, 255, 255, so you would
use "#FFFFFF". You can also use the following color names, although
they are not as widely supported as the codes:<BR>
<TABLE>
<TR>
<TH ALIGN=left>Black: <TD>#000000 <TH ALIGN=left>Green: <TD>#008000 
<TH ALIGN=left>Silver: <TD>#C0C0C0 <TH ALIGN=left>Lime: <TD>#00FF00<BR></TD>
<TR>
<TH ALIGN=left>Gray: <TD>#808080  <TH ALIGN=left>Olive: <TD>#808000
<TH ALIGN=left>White: <TD>#FFFFFF <TH ALIGN=left>Yellow: <TD>#FFFF00<BR></TD>
<TR>
<TH ALIGN=left>Maroon: <TD>#800000 <TH ALIGN=left>Navy: <TD>#000080
<TH ALIGN=left>Red: <TD>#FF0000 <TH ALIGN=left>Blue: <TD>#0000FF<BR></TD>
<TR>
<TH ALIGN=left>Purple: <TD>#800080 <TH ALIGN=left>Teal: <TD>#008080 
<TH ALIGN=left>Fuchsia: <TD>#FF00FF <TH ALIGN=left>Aqua: <TD>#00FFFF<BR></TD>
</TABLE>
<P>
The BODY tag is optional; if you put all the <A HREF="./head/head.html">HEAD</A> elements first,
the browser can immediately see where the actual document body begins.
  <H3>Notes:</H3>
<UL>
<LI>If the background image cannot be displayed, the color specified in
BGCOLOR will be used.
<LI>If you set one of the attributes, set them all. Otherwise your
specified color may conflict with a user's default. This could result
in unreadable text. For example, imagine that you set your TEXT color
to light gray, but forget to set the background. Then someone with a
light gray background will not see anything at all.
<LI>Do not set unvisited and visited links to the same color, it will
confuse your readers.
<LI>The names that you can use instead of the hexadecimal values are 
not as widely supported as the color codes.
<LI>Netscape 1.1 produced a "fade" effect when more than one
BODY tag was used in a document. It would render the BGCOLOR colors in
sequence. This bug has been fixed in later versions. Do not expect that
using multiple BODY tags will give the intended results.
</UL>
<HR>
<H2>BR - Forced line break</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><BR><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>CLEAR=left|all|right|none<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The BR tag is used to force line breaks within text. Normally, linebreaks
are treated as a space by browsers (except inside the <A HREF="./block/pre.html">PRE</A> tag).
The optional CLEAR attribute is used when you have an <A HREF="./special/img.html">IMG</A> image
in your text. If that image uses ALIGN=LEFT or ALIGN=RIGHT, the text
will flow around it. If you have text you want below the image, you
can do this with <BR CLEAR=LEFT> or CLEAR=RIGHT to force scrolling
down to a clear left or right margin, respectively. Using CLEAR=ALL will
scroll down until both margins are clear. CLEAR=NONE is the default,
and does nothing.
  <H3>Notes:</H3>
<UL>
<LI>Some people use multiple BR tags to force whitespace. This is not
required by the specs, so it may not work in all browsers.
</UL>
<HR>
 
<H2>B - Bold</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><B> </B><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
B is used to indicate that the enclosed text must be rendered in a
bold typeface. It must be rendered distinct from <A HREF="./font/i.html">I</A>-italics text.
<P>
If you want to indicate strong emphasis, use the <A HREF="./phrase/strong.html">STRONG</A> element
instead. B should only be used when you want bold typeface for
some other reason than to denote strong emphasis. While the two tags usually
produce the same output, the B tag does not provide any reasons
<EM>why</EM> the enclosed text is in boldface. This means an indexer
or text-only browser cannot pick a good alternative. With <A HREF="./phrase/strong.html">STRONG</A>
this is possible. 
  <H3>Notes:</H3>
<UL>
<LI>Putting large blocks of text in boldface makes the text hard to
read.
</UL>
<HR>
<H2>CAPTION - Table caption</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><CAPTION> </CAPTION><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=top|bottom<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./table/table.html">TABLE</A>.<BR></TD>
</TR>
</TABLE>
<P>
The CAPTION tag is used to provide a caption for a <A HREF="./table/table.html">TABLE</A>. This
caption can either appear above or below the table. This can be indicated
with the ALIGN attribute. It is usually centered with respect to the
table itself, and usually appears in bold or is emphasized in some
other way.
<P>
The tag should appear directly below the <A HREF="./table/table.html">TABLE</A> tag, before the
first <A HREF="./table/tr.html">TR</A>.
  <H3>Notes:</H3>
<UL>
<LI>Although you can use all text-level markup inside a CAPTION, it should
be brief, so don't include images or large amounts of text in it.
</UL>
<HR>
<H2>CENTER - Centered division</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><CENTER> </CENTER><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/p.html">P</A>, <A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./list/dl.html">DL</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./block/hr.html">HR</A>, <A HREF="./table/table.html">TABLE</A>, <A HREF="./block/address.html">ADDRESS</A> as well as <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
The CENTER tag is one of the first Netscape extensions. It is used to
indicate that large blocks of text should appear centered. In the Wilbur
standard, it is defined as an alias for <<A HREF="./block/div.html">DIV</A> ALIGN=CENTER>.
<P>
The tag is more widely supported than the <A HREF="./block/div.html">DIV</A> method, as it was
the first widely implemented Netscape extension to HTML 2.
  <H3>Notes:</H3>
<UL>
<LI>The CENTER tag is <STRONG>not</STRONG> text-level markup, so do
not use it to center single lines of text inside a paragraph or other
block element. It will introduce a new paragraph.
<LI>Older versions of Netscape treated CENTER as if it were text-level
markup, so it was rendered without a paragraph break there.
<LI>For better portability with browsers which do not support this
tag, use ALIGN=CENTER on headers and paragraphs if possible.
</UL>
<HR>
<H2>CITE - Short citations</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><CITE> </CITE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The CITE element marks up the title of a cited work.
For example, a text discussing HTML could say <CODE><CITE>RFC
1866</CITE> says ...</CODE>.
<P>
Text in CITE is typically rendered in italics.
  <H3>Notes:</H3>
<UL>
<LI>Do not use CITE for anything but titles of cited works. It will confuse indexers
and automatic programs to extract information from your documents. Use
<A HREF="./phrase/em.html">EM</A> for emphasis or <A HREF="./font/i.html">I</A> for text which must appear in italics.
<LI>There is no element in HTML 3.2 to mark up short cited phrases.
For longer texts, you can use <A HREF="./block/blockquote.html">BLOCKQUOTE</A>.
</UL>
<HR>
<H2>CODE - Code fragments</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><CODE> </CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
CODE is used for snippets of code which appear inside a paragraph of
text. It is usually rendered in a monospaced font. You can use this
tag to mark up things like <CODE><CODE>for ( ; ; ) ;</CODE> 
is a nice way to make an endless loop in C</CODE>.
<P>
For larger blocks of code, use <A HREF="./block/pre.html">PRE</A> instead.  If what you are marking
up is what a user should type in, use <A HREF="./phrase/kbd.html">KBD</A>.
  <H3>Notes:</H3>
<UL>
<LI>CODE will usually be rendered in a monospaced font, but multiple spaces
are collapsed, unlike in <A HREF="./block/pre.html">PRE</A>. This can screw up the spacing in
your code if you want to provide more than one line.
</UL>
<HR>
<H2>DD - Definition</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><DD> [</DD>]<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/p.html">P</A>, <A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./list/dl.html">DL</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./block/hr.html">HR</A>, <A HREF="./table/table.html">TABLE</A> and <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./list/dl.html">DL</A>.<BR></TD>
</TR>
</TABLE>
<P>
The DD tag is used inside a <A HREF="./list/dl.html">DL</A> definition list to provide the
definition of the text in the <A HREF="./list/dt.html">DT</A> tag. It may contain block elements
but also plain text and markup. The end tag is optional, as it's always
clear from the context where the tag's contents ends.
<P>
A typical rendering is indented, one line below the <A HREF="./list/dt.html">DT</A>, but this is
not guaranteed.
  <H3>Notes:</H3>
<UL>
<LI>Some people use this tag out of its proper context (<A HREF="./list/dl.html">DL</A> only) 
to achieve an "indent" in text. Don't do this, it is not valid and not
guaranteed to work.
</UL>
<HR>
<H2>DFN - Definition of a term</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><DFN> </DFN><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
DFN is used to mark up terms which are used for the first time. These
are often rendered in italics so the user can see this is where the
term is used for the first time.
  <H3>Notes:</H3>
<UL>
<LI>Not all browsers render this tag in an appropriate way.
</UL>
<HR>
<H2>DIR - Directory list</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><DIR> </DIR><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>COMPACT<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
The DIR element is similar to the <A HREF="./list/ul.html">UL</A> element. It represents a
list of short items, typically up to 20 characters each. Items in a
directory list may be arranged in columns, typically 24 characters
wide.
  <H3>Notes:</H3>
<UL>
<LI>It is not permitted to use a <A HREF="./block/index.html">block
element</A>, <A HREF="./list/index.html">list element</A> or
<A HREF="./table/table.html">TABLE</A> in a <A HREF="./list/li.html">LI</A> inside a <A HREF="./list/menu.html">MENU</A> or DIR.
</UL>
<HR>
<H2>DIV - Logical division</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><DIV ALIGN=foo> </DIV><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|right|center<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/p.html">P</A>, <A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./list/dl.html">DL</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./block/hr.html">HR</A>, <A HREF="./table/table.html">TABLE</A>, <A HREF="./block/address.html">ADDRESS</A> as well as <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
The DIV tag is used to mark up divisions in a document. It can enclose
paragraphs, headers and other block elements. Currently, you can only use it
to set the default alignment for all enclosed block elements. Future
standards will most likely include more options for DIV.
<P>
Just like with other block elements such as <A HREF="./block/p.html">P</A> or <A HREF="./block/h1.html">H1</A>, you can
specify left, right and centered alignment.
  <H3>Notes:</H3>
<UL>
<LI>The align attribute on a block element inside DIV overrides the
align value of the DIV element.
<LI>Instead of <DIV ALIGN=CENTER>, use <A HREF="./block/center.html">CENTER</A>. This element
is more widely supported at the moment, even though HTML 3.2 defines
both as identical.
</UL>
<HR>
<H2>DL - Definition list</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><DL> </DL><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>COMPACT<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
DL is used to provide a list of items with associated definitions. Every
item should be put in a <A HREF="./list/dt.html">DT</A>, and its definition goes in the <A HREF="./list/dd.html">DD</A>
directly following it. This list is typically rendered without bullets
of any kind.
<P>
While it is legal to have a DL with only <A HREF="./list/dd.html">DD</A> or <A HREF="./list/dt.html">DT</A> tags, it
doesn't make much sense (what good is a definition without a term?)
and you shouldn't expect it to get rendered as a normal list.
  <H3>Notes:</H3>
<UL>
<LI>DL may not contain plain text or any tag other than <A HREF="./list/dt.html">DT</A> or <A HREF="./list/dd.html">DD</A>.
<LI>Do not use DL to create an indented section of text. This is not
guaranteed to work and it is syntactically invalid HTML.
</UL>
<HR>
<H2>DT - Definition term</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><DT> [</DT>]<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./list/dl.html">DL</A>.<BR></TD>
</TR>
</TABLE>
<P>
The DT tag is used inside <A HREF="./list/dl.html">DL</A>. It marks up a term whose definition
is provide by the next <A HREF="./list/dd.html">DD</A>. The DT tag may only contain text-level
markup.
  <H3>Notes:</H3>
<UL>
<LI>Although it is legal, using a DT without a corresponding <A HREF="./list/dd.html">DD</A> tag is
quite pointless.
</UL>
<HR>
<H2>EM - Emphasized text</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><EM> </EM><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
EM is used to indicate emphasized text. While it is often rendered
identical to <A HREF="./font/i.html">I</A>, italics, using EM rather than <A HREF="./font/i.html">I</A> is preferred.
It allows the browser to distinguish between emphasized text and other
text which can be drawn in italics (for example citations, <A HREF="./phrase/cite.html">CITE</A>).
<P>
EM text should be rendered distinct from <A HREF="./phrase/strong.html">STRONG</A> text.
  <H3>Notes:</H3>
<UL>
<LI>Use EM only for emphasized text. If you want to use an italic
font for some other reason, use a more appropriate element like <A HREF="./phrase/cite.html">CITE</A>, 
<A HREF="./phrase/dfn.html">DFN</A> or <A HREF="./font/i.html">I</A>.
</UL>
<HR>
<H2>FONT - Font appearance</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><FONT> </FONT><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>SIZE=<CODE>string</CODE>, COLOR=<CODE>#RRGGBB</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The FONT tag can be used to change the appearance of the current
block, in terms of size and color. The SIZE attribute can either take
an absolute value, ranging from 1 (smallest) to 7 (largest), or a
relative value. Using the latter will change the font relative to
the font size as set in the most recent <A HREF="./special/basefont.html">BASEFONT</A> tag. 
For example, <FONT SIZE="+1"> will
make the font size one step bigger.
<P>
The COLOR attribute takes a hex value, which is the RGB-notation of
the desired color. You can also use a color name, although the names
are less widely supported than the codes. See the section on <A HREF="./body/body.html">BODY</A> 
for a more detailed explanation on how to specify colors.
<P>
In both cases, the closing tag </FONT> restores the previous
font size and/or color.
  <H3>Notes:</H3>
<UL>
<LI>Avoid making extreme font changes if possible. They can make a 
document hard to read. If possible, use <A HREF="./font/big.html">BIG</A> instead of <FONT
SIZE="+1"> and <A HREF="./font/small.html">SMALL</A> instead of <FONT SIZE="-1">.
<LI>The color attribute is not very widely supported, so do not rely
on it.
<LI>None of the browsers which support FONT allow their users to
disable it. It <EM>is</EM> possible to disable body colors, so if you
use FONT COLOR to change font colors and the visitor has overriden your
body colors, the text may wind up invisible.
<LI>Do not use the FONT tag to emulate headers. Indexers rely on the
six header elements to generate an overview of a document, and they
will not be able to index your document if you use FONT instead. FONT
should be used only as an enhancement of the presentation.
</UL>
<HR>
<H2>FORM - HTML forms</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><FORM ACTION=<CODE>URL</CODE>> </FORM><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ACTION=<CODE>URL</CODE>, METHOD=get|post, ENCTYPE=<CODE>string</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/p.html">P</A>, <A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./list/dl.html">DL</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./block/hr.html">HR</A>, <A HREF="./table/table.html">TABLE</A>, <A HREF="./block/address.html">ADDRESS</A> as well as <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
Forms allow a person to send data to the WWW server. You can use the
<A HREF="./form/input.html">INPUT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./form/select.html">SELECT</A> tags to add individual elements,
such as checkboxes, input fields or "drop down" lists to your form.
A form may contain all markup (both text and body level tags), but it
may not have a nested form.
<P>
FORM has one required attribute, ACTION, specifying the URL of a CGI
script which processes the form and sends back feedback. There are
two methods to send form data to a server. GET, the default, will
send the form input in an URL, whereas POST sends it in the body of
the submission. The latter method means you can send larger amounts of
data, and that the URL of the form results doesn't show the encoded
form.
<P>
You can specify an encoding type with ENCTYPE, the default of
"application/x-www-form-urlencoded" is most widely supported. 
An alternative is "text/plain", which is typically used in combination
when the ACTION attribute points to a mailto: URL. If a browser
supports both, the contents of the form is sent in plain text to
the indicated recipient.
  <H3>Notes:</H3>
<UL>
<LI>A form should always have at least one submit button. This can be
done with <<A HREF="./form/input.html">INPUT</A> TYPE=submit NAME=submitit> or with an
image: <<A HREF="./form/input.html">INPUT</A> TYPE=image NAME=submitit>.
<LI>More than one submit button is legal. If each submit button has
a unique NAME attribute, the name of the selected submit button is
sent along with the rest of the form input. This allows the parsing
script to determine which button was pressed.
<LI>The URL specified in the ACTION attribute does not have to be a
CGI script, although you can get pretty weird results if you try to
feed data to a document which isn't a CGI script. A popular reason to
do this is to get a "button" which when pressed takes you to a new page.
This can be done with:
<PRE>
<FORM ACTION="destination_url" METHOD=GET>
<INPUT TYPE=submit NAME=foo VALUE="Go to destination">
</FORM>
</PRE>
</UL>
<HR>
<H2>H1 - Level 1 heading</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><H1> </H1><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|right|center<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The level 1 heading is the most important header in the document. It
should be rendered more prominently than any other header. It
is usually used to indicate the title of the document. Often it has
the same contents as the <A HREF="./head/title.html">TITLE</A>, although this is not required and
not always a good idea. The title should be useful out of context
(for example, in a bookmarks file) but the level 1 heading is only
used inside the document.
<P>
The optional ALIGN attribute controls the horizontal alignment of the header. 
It can be LEFT, CENTER or RIGHT. 
  <H3>Notes:</H3>
<UL>
<LI>Headers should be used in hierarchical order.
<LI>Do not assume that this header means "very large font size and
bold." While this is a popular rendering, it can be anything the browser
chooses.
<LI>Search engines may give words appearing in headers more importance
in their index. The headers are also often used to build an "outline"
of the document, which appears in the search results.
<LI>Right alignment is not as widely supported as centered.
</UL>
<HR>
<H2>H2 - Level 2 heading</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><H2> </H2><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|right|center<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The level 2 heading is the second most important header in the document. It
should be rendered more prominently than a <A HREF="./block/h3.html">H3</A>, but less prominently
than a <A HREF="./block/h1.html">H1</A>. It is often used to mark up chapters in a document.
<P>
The optional ALIGN attribute controls the horizontal alignment of the header. 
It can be LEFT, CENTER or RIGHT. 
  <H3>Notes:</H3>
<UL>
<LI>Headers should be used in hierarchical order.
<LI>Do not assume that this header means "very large font size and
bold." While this is a popular rendering, it can be anything the browser
chooses.
<LI>Search engines may give words appearing in headers more importance
in their index. The headers are also often used to build an "outline"
of the document, which appears in the search results.
<LI>Right alignment is not as widely supported as centered.
</UL>
<HR>
<H2>H3 - Level 3 heading</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><H3> </H3><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|right|center<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The level 3 heading is the third most important header in the document. It
should be rendered more prominently than a <A HREF="./block/h4.html">H4</A>, but less prominently
than a <A HREF="./block/h2.html">H2</A>. It is often used to mark up sections inside a chapter
in a document.
<P>
The optional ALIGN attribute controls the horizontal alignment of the header. 
It can be LEFT, CENTER or RIGHT. 
  <H3>Notes:</H3>
<UL>
<LI>Headers should be used in hierarchical order.
<LI>Do not assume that this header means "very large font size and
bold." While this is a popular rendering, it can be anything the browser
chooses.
<LI>Search engines may give words appearing in headers more importance
in their index. The headers are also often used to build an "outline"
of the document, which appears in the search results.
<LI>Right alignment is not as widely supported as centered.
</UL>
<HR>
<H2>H4 - Level 4 heading</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><H4> </H4><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|right|center<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The level 4 heading 
should be rendered more prominently than a <A HREF="./block/h5.html">H5</A>, but less prominently
than a <A HREF="./block/h3.html">H3</A>. It is often used to mark up subsections in a document.
<P>
The optional ALIGN attribute controls the horizontal alignment of the header. 
It can be LEFT, CENTER or RIGHT. 
  <H3>Notes:</H3>
<UL>
<LI>Headers should be used in hierarchical order.
<LI>Do not assume that this header means "large font size and
bold." While this is a popular rendering, it can be anything the browser
chooses.
<LI>Search engines may give words appearing in headers more importance
in their index. The headers are also often used to build an "outline"
of the document, which appears in the search results.
<LI>Right alignment is not as widely supported as centered.
</UL>
<HR>
<H2>H5 - Level 5 heading</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><H5> </H5><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|right|center<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The level 5 heading is the second least important header in the document. It
should be rendered more prominently than a <A HREF="./block/h6.html">H6</A>, but less prominently
than a <A HREF="./block/h4.html">H4</A>. Because it is often rendered in a small font, it is not
used very often. It should be used to divide sections inside a <A HREF="./block/h4.html">H4</A>.
<P>
The optional ALIGN attribute controls the horizontal alignment of the header. 
It can be LEFT, CENTER or RIGHT. 
  <H3>Notes:</H3>
<UL>
<LI>Headers should be used in hierarchical order.
<LI>Do not assume that this header means "small font size and
bold." While this is a popular rendering, it can be anything the browser
chooses.
<LI>Search engines may give words appearing in headers more importance
in their index. The headers are also often used to build an "outline"
of the document, which appears in the search results.
<LI>Right alignment is not as widely supported as centered.
</UL>
<HR>
<H2>H6 - Level 6 heading</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><H6> </H6><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|right|center<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The level 6 heading is the least important header in the document. It
should be rendered less prominently than a <A HREF="./block/h5.html">H5</A>, but more prominently 
than normal text. Because it is often rendered in a small font, it is not
used very often. It should be used to divide sections inside a <A HREF="./block/h5.html">H5</A>.
<P>
The optional ALIGN attribute controls the horizontal alignment of the header. 
It can be LEFT, CENTER or RIGHT. 
  <H3>Notes:</H3>
<UL>
<LI>Headers should be used in hierarchical order.
<LI>Do not assume that this header means "very small font size and
bold." While this is a popular rendering, it can be anything the browser
chooses.
<LI>Search engines may give words appearing in headers more importance
in their index. The headers are also often used to build an "outline"
of the document, which appears in the search results.
<LI>Right alignment is not as widely supported as centered.
</UL>
<HR>
<H2>HEAD - Document head</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP>[<HEAD>] [</HEAD>]<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./head/title.html">TITLE</A>, <A HREF="./head/isindex.html">ISINDEX</A>, <A HREF="./head/base.html">BASE</A>, <A HREF="./head/script.html">SCRIPT</A>, <A HREF="./head/style.html">STYLE</A>, <A HREF="./head/meta.html">META</A>, <A HREF="./head/link.html">LINK</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/html.html">HTML</A>.<BR></TD>
</TR>
</TABLE>
<P>
The HEAD part of the document provides information about the document. It
should not contain text or normal markup. If a browser encounters such
markup, it will assume it has arrived in the <A HREF="./body/body.html">BODY</A> section of the
document already.
  <H3>Notes:</H3>
<UL>
<LI>You may only omit this tag if you group all the tags which may
go in it at the top.
</UL>
<HR>
<H2>HR - Horizontal rule</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><HR><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|right|center, NOSHADE, SIZE=<CODE>n</CODE>, WIDTH=<CODE>n</CODE>|<CODE>p%</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
HR is used to draw horizontal rules across the browser window. If the
margins are currently smaller, for example because of images (<A HREF="./special/img.html">IMG</A>)
which are placed against the margins, the rule will extend to these
margins instead of the whole window. A horizontal rule is typically
used to separate sections within a document.
<P>
In HTML 3.2, the appearance can be controlled more than in HTML 2. You
can specify the thickness of the rule with the SIZE attribute, which
takes an integer number of pixels. The width of the rule can be
specified in number of pixels or as a percentage of the currently available
window width, using the WIDTH attribute. Don't forget that percentage
values must be quoted! The NOSHADE attribute is used to indicate that
the rule should not get its usual shaded appearance, but instead should
be drawn as a thick line.
  <H3>Notes:</H3>
<UL>
<LI>None of the attributes for HR existed in HTML 2, so they may not
be supported by all browsers. This can produce bizarre effects if you
are using multiple HRs in a row to produce growing or shrinking "stripes".
<LI>If you use too many rules on a document, the end result can be that
the document looks like a "sandwich" because there is little text
between each rule.
<LI>Setting an absolute width is not recommended, since you have no way
to know how wide the currently available window is. Use a percentage
if you have to change the width.
</UL>
<HR>
<H2>HTML - HTML Document</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP>[<HTML>] [</HTML>]<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>VERSION=<CODE>string</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./head/head.html">HEAD</A> followed by <A HREF="./body/body.html">BODY</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP>(Not appliciable).<BR></TD>
</TR>
</TABLE>
<P>
The HTML tag is the outermost tag. It is not required and may safely
be omitted. It indicates that the text is HTML (the version can be
indicated with the optional VERSION attribute), but this information
is almost never used by servers or browsers.
  <H3>Notes:</H3>
<UL>
<LI>If used, the HTML tags should go around the <EM>entire</EM>
document, but directly after the <A HREF="./structure.html#doctype">DOCTYPE</A> declaration.
</UL>
<HR>
<H2>IMG - Inline images</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><IMG SRC=<CODE>URL</CODE>><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP><B>SRC=<CODE>URL</CODE></B>, ALT=<CODE>string</CODE>, ALIGN=left|right|top|middle|bottom, HEIGHT=<CODE>n</CODE>, WIDTH=<CODE>n</CODE>, BORDER=<CODE>n</CODE>, HSPACE=<CODE>n</CODE>, VSPACE=<CODE>n</CODE>, USEMAP=<CODE>URL</CODE>, ISMAP<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The IMG tag is used to insert images within text. These are often called
"inline" images. Note that the IMG tag is not a block tag by itself, so
it must be used only within a block element. The location of the image
file should be specified in the SRC attribute. It can be a relative or
an absolute URL. When the image cannot be displayed for whatever reason, 
the browser should display the ALT text instead. The WIDTH and HEIGHT
attributes should contain the image's dimensions. This allows a browser
to lay out the page in advance, as it now knows where the text below the
image should be drawn.
<P>
ALIGN controls the alignment of the image with respect to the text. Using 
a value of LEFT or RIGHT will make the image line up against the left or
right margin, and text will flow around it.  To force text below such an
aligned image, use <A HREF="./special/br.html">BR</A> with the CLEAR attribute.  The values TOP, MIDDLE
and BOTTOM specify where any text following the image should be put.
If more than one line follows after the image, it will be put below
the image.
<P>
VSPACE and HSPACE get a numeric value, indicating the number of pixels
that should be left free around the image. VSPACE covers vertical
spacing and HSPACE the horizontal spacing.
<P>
The BORDER attribute is used when the image is a link. It indicates
that the browser should draw a border of the indicated size around 
the image to show that it is a link. It's most often used as BORDER=0
to turn it off. This has the disadvantage that the image must make
it very clear that it's a hyperlink.
<P>
ISMAP and USEMAP are used for imagemaps. The ISMAP attribute specifies
that the link that this image is in goes to an imagemap program on the
server, so the browser can send the coordinates of the selected location
to the server. USEMAP is used for a so-called client-side imagemap. It
specifies the URL of the imagemap information. Support for this is
limited, especially if the URL points to a different document rather than
an inline anchor. See the section on the <A HREF="./special/map.html">MAP</A> tag for more information
about client-side imagemaps.
  <H3>Notes:</H3>
<UL>
<LI>Most browsers only support GIF and JPEG file types for inline images.
<LI>The ALT text may not contain markup, other than entities. Not all
browsers support entities in ALT text, so be careful.
<LI>Although the ALT attribute is not required, it is good practice
to add it. It should replace the image's <EM>meaning</EM>, and
not just provide a description <EM>of</EM> the image! If the image is
purely decorational, use ALT="" or a decorative ALT text like "* " if
possible.
<LI>Using WIDTH and HEIGHT with incorrect values, or with percentage
values is not valid. Some browsers (most notably Netscape) resize the
image to the indicated size, but this often gives very poor results.
Other browsers simply ignore the WIDTH and HEIGHT attributes in such
a case.
<LI>Browsers which do not draw boxes around hyperlinked images will
not honor the BORDER attribute.
</UL>
<HR>
<H2>INPUT - Input field</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><INPUT TYPE=x NAME=y><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>TYPE=text|password|checkbox|radio|submit|reset|file|hidden|image, NAME=<CODE>string</CODE>, VALUE=<CODE>string</CODE>, CHECKED, SIZE=<CODE>n</CODE>, MAXLENGTH=<CODE>n</CODE>, SRC=<CODE>URL</CODE>, ALIGN=top|middle|bottom|left|right<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>, but must be inside a <A HREF="./block/form.html">FORM</A>.<BR></TD>
</TR>
</TABLE>
<P>
The INPUT tag is probably the most useful tag inside forms. It can
generate buttons, input fields and checkboxes. In all cases, the NAME
attribute must be set. 
<DL>
<DT>TYPE=text
<DD>This generates a input field, where the user can enter up to
MAXLENGTH characters. The SIZE attribute lists the length of the input
field (if the user enters more characters, the text will scroll). The
VALUE attribute specifies the initial value for the input field.
<DT>TYPE=password
<DD>Same as TYPE=text, but the text will be hidden by "*" or similar
characters. It is still sent in the clear to the server, though.
<DT>TYPE=checkbox
<DD>Produces a checkbox. It has two states, on and off. When it is on
when the form is submitted, it will be sent as "name=on", otherwise
it is ignored altogether. If you use CHECKED, it will come up checked
(selected) initially.
<DT>TYPE=radio
<DD>Produces a radio button. A radio button always exists in a group.
All members of this group should have the same NAME attribute, and
different VALUEs. The VALUE of the selected radio button will be sent
to the server. You must specify CHECKED on exactly one radio button,
which then will come up selected initially.
<DT>TYPE=submit
<DD>Produces a button, which when pressed sends the contents of the
form to the server. You can have more than one submit button in the form.
Each should have a different NAME. The name and value of the pressed
button will be sent to the server as well. The value of the VALUE attribute 
is typically used as text on the submit button.
<DT>TYPE=reset
<DD>Also produces a button, which will restore the form to its original
state if pressed. The value of the VALUE attribute is typically used as 
text on the reset button.
<DT>TYPE=file
<DD>Allows the user to upload a file. It is still very new, so it is
not very widely supported. It is typically presented as an input box
with a button to start browsing the local hard disk. This way, a user
can specify one or more filename(s) to upload. 
<DT>TYPE=hidden
<DD>Allows you to embed information in the form which you do not want
changed. This can be useful if the document is generated by a script
and you need to store state information. NAME and VALUE of this input
field will be sent to the server without modifications.
<DT>TYPE=image
<DD>Functions similar to a submit button, but uses an image instead.
The ALIGN attribute controls the alignment of the image. The coordinates
of the selected region will also be sent to the server, in the form
of "NAME.x=<CODE>n</CODE>&NAME.y=<CODE>n</CODE>". A text browser will treat it as
identical to a normal submit button.
</DL>
  <H3>Notes:</H3>
<UL>
<LI>Do not expect that if you set MAXLENGTH, you will get no more than
so many characters. Anyone can modify his local copy of your form to
enter as many characters as he wants.
</UL>
<HR>
<H2>ISINDEX - Primitive search</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><ISINDEX><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>PROMPT=<CODE>string</CODE>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./head/head.html">HEAD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The ISINDEX tag was used before <A HREF="./block/form.html">FORM</A>s became more popular. When
inserted in a document, it will allow the user to enter keywords which
are then sent to the server. The server then executes a search and
returns the results. The PROMPT attribute can be used to override the
default text in the dialog box ("Enter search keywords: ").
  <H3>Notes:</H3>
<UL>
<LI>This tag should be inserted by the server if the document can be
searched. Merely inserting this tag will not make the document
searchable!
<LI>For more flexibility, use a <A HREF="./block/form.html">FORM</A> instead.
</UL>
<HR>
<H2>I - Italics</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><I> </I><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
I is used to indicate that the enclosed text must be rendered in a
italic (slanted) typeface. It must be rendered distinct from <A HREF="./font/b.html">B</A>-bold
text.
<P>
You should use <A HREF="./phrase/em.html">EM</A> or <A HREF="./phrase/cite.html">CITE</A> instead of I if you can. While they usually
produce the same output, the I tag does not provide any reasons
<EM>why</EM> the enclosed text is in italics. This means an indexer
or text-only browser cannot pick a good alternative. With <A HREF="./phrase/em.html">EM</A> and
<A HREF="./phrase/cite.html">CITE</A> this is possible. The browser can now distinguish between
emphasized text and citations and choose different methods to display
them.
  <H3>Notes:</H3>
<UL>
<LI>The I tag should only be used if text is in italics by convention.
</UL>
<HR>
<H2>KBD - Keyboard input</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><KBD> </KBD><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
KBD is used to indicate text which should be entered by the user. It
is often drawn in a monospaced font, although this is not required.
It differs from <A HREF="./phrase/code.html">CODE</A> in that <A HREF="./phrase/code.html">CODE</A> indicates <EM>code fragments</EM>
and KBD indicates <EM>input</EM>.
  <H3>Notes:</H3>
<UL>
<LI>Do not use KBD if your text requires a monospaced font; use <A HREF="./font/tt.html">TT</A>
instead.
</UL>
<HR>
<H2>LINK - Site structure</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><LINK REL=<CODE>string</CODE> HREF=<CODE>URL</CODE>><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>REL=<CODE>string</CODE>, REV=<CODE>string</CODE>, <B>HREF=<CODE>URL</CODE></B>, TITLE=<CODE>string</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./head/head.html">HEAD</A>.<BR></TD>
</TR>
</TABLE>
<P>
LINK is used to indicate relationships between documents.  There are two
possible relationships:  REL indicates a normal relationship to the
document specified in the URL.  REV indicates a reverse relationship.  In
other words, the <EM>other</EM> document has the indicated relationship
with this one.  The TITLE attribute can be used to suggest a title for the
referenced URL or relation.
<P>
Some possible values for REL and REV:
<DL>
<DT>REV="made"
<DD>Indicates the creator of the document. Usually the URL is a mailto:
URL with the creator's e-mail address. Advanced browsers will now let
the reader comment on the page with just one button or keystroke.
<DT>REL="stylesheet"
<DD>This indicates the location of the appropriate style sheet for the
current document.
</DL>
The following LINK tags allow advanced browsers to automatically generate
a navigational buttonbar for the site. For each possible value, the
URL can be either absolute or relative.
<DL>
<DT>REL="home"
<DD>Indicates the location of the homepage, or starting page in this site.
<DT>REL="toc"
<DD>Indicates the location of the table of contents, or overview of this site.
<DT>REL="index"
<DD>Indicates the location of the index for this site. This doesn't have
to be the same as the table of contents. The index could be alphabetical,
for example.
<DT>REL="glossary"
<DD>Indicates the location of a glossary of terms for this site.
<DT>REL="copyright"
<DD>Indicates the location of a page with copyright information for
information and such on this site.
<DT>REL="up"
<DD>Indicates the location of the document which is logically directly
above the current document.
<DT>REL="next"
<DD>Indicates the location of the next document in a series, relative
to the current document.
<DT>REL="previous"
<DD>Indicates the location of the previous document in a series, relative
to the current document.
<DT>REL="help"
<DD>Indicates the location of a help file for this site. This can be
useful if the site is complex, or if the current document may require
eplanations to be used correctly (for example, a large fill-in form).
</DL>
  <H3>Notes:</H3>
<UL>
<LI>Support for the LINK tag is currently very limited, although it
may be useful for site maintenance.
</UL>
<HR>
<H2>LI - List item</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><LI> [</LI>]<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>TYPE=disc|square|circle when in <A HREF="./list/ul.html">UL</A>, TYPE=1|a|A|i|I when in <A HREF="./list/ol.html">OL</A>, VALUE=<CODE>n</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/p.html">P</A>, <A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./list/dl.html">DL</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./block/hr.html">HR</A>, <A HREF="./table/table.html">TABLE</A> and <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>.<BR></TD>
</TR>
</TABLE>
<P>
The LI element is used to mark list items within a list. When the list
used is <A HREF="./list/ol.html">OL</A>, ordered list, the LI element will be rendered with
a number. The appearance of that number can be controlled with the TYPE
attribute. Similarly, inside an unordered list <A HREF="./list/ul.html">UL</A> the type of bullet
that is displayed can be controlled with TYPE. <A HREF="./list/dir.html">DIR</A> and <A HREF="./list/menu.html">MENU</A> can't
be controlled this way, as they are not required to be bulleted or
numbered. For ordered lists, you can also reset the sequence with the 
VALUE attribute.
<P>
The TYPEs for ordered lists should give the following appearance:
<UL>
<LI>1 - Arabic numbers (default) (1, 2, 3, 4, ...)
<LI>a - Alphanumeric, lowercase (a, b, c, d, ...)
<LI>A - Alphanumeric, uppercase (A, B, C, D, ...)
<LI>i - Roman numbers, lowercase (i, ii, iii, iv, ...)
<LI>I - Roman numbers, uppercase (I, II, III, IV, ...)
</UL>
  <H3>Notes:</H3>
<UL>
<LI>The attributes on LI are new with HTML 3.2, and so not supported by
all browsers yet.
<LI>Using LI outside its proper context to get a bullet in the text
is not guaranteed to work.  A browser is free to ignore such an
out-of-context item.
<LI>When the LI element is used inside <A HREF="./list/menu.html">MENU</A> or <A HREF="./list/dir.html">DIR</A>,
it is not permitted to include <A HREF="./block/index.html">block
elements</A>, <A HREF="./list/index.html">list elements</A> or
<A HREF="./table/table.html">TABLE</A>s in the LI's contents.
</UL>
<HR>
<H2>MAP - Client-side imagemap</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><MAP NAME=<CODE>string</CODE>> </MAP><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>NAME=<CODE>string</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./special/area.html">AREA</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
When you use a client-side imagemap, the information on the "hot spots"
(clickable areas) in the image is defined here. Every selectable area
should be mentioned in an <A HREF="./special/area.html">AREA</A> tag inside the MAP tag. The NAME
attribute on the MAP tag assigns a name to the imagemap. The URL for
the client-side imagemap should point to this.
<P>
For example, if you have a map named "foo", you could reference to it
with <CODE><<A HREF="./special/img.html">IMG</A> SRC="map.gif" USEMAP="#foo"></CODE>
if the image was on the same page.
  <H3>Notes:</H3>
<UL>
<LI>Client-side imagemaps are not widely supported yet, so try to offer
a textual alternative or also use a server-side imagemap. This can
be done by putting the <A HREF="./special/img.html">IMG</A> tag with the USEMAP attribute inside an 
<A HREF="./special/a.html">A</A> and by adding the ISMAP attribute.
<LI>Having the imagemap data in a separate file is not as widely supported
as inlined data.
</UL>
<HR>
<H2>MENU - Menu item list</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><MENU> </MENU><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>COMPACT<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
The MENU item produces a list like <A HREF="./list/ul.html">UL</A>, but it should be rendered
more compact. Not all browsers make this distinction, and some render 
it without a bullet at all.
  <H3>Notes:</H3>
<UL>
<LI>It is not permitted to use a <A HREF="./block/index.html">block
element</A>, <A HREF="./list/index.html">list element</A> or
<A HREF="./table/table.html">TABLE</A> in a <A HREF="./list/li.html">LI</A> inside a MENU or <A HREF="./list/dir.html">DIR</A>.
</UL>
<HR>
<H2>META - Meta-information</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><META NAME=<CODE>string</CODE> CONTENT=<CODE>string</CODE>><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>HTTP-EQUIV=<CODE>string</CODE>|NAME=<CODE>string</CODE>, <B>CONTENT=<CODE>string</CODE></B><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./head/head.html">HEAD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The META tag is used to convey meta-information about the document, but
can also be used to specify headers for the document. You can use either
HTTP-EQUIV or NAME to name the meta-information, but CONTENT must be used
in both cases. By using HTTP-EQUIV,
a server <EM>should</EM> use the name indicated as a header, with the
specified CONTENT as its value. For example,
<PRE>
<META HTTP-EQUIV="Expires" CONTENT="Tue, 04 Dec 1993 21:29:02 GMT">
<META HTTP-EQUIV="Keywords" CONTENT="Nanotechnology, Biochemistry">
<META HTTP-EQUIV="Reply-to" CONTENT="dsr@w3.org (Dave Raggett)">
</PRE>
<P>
The server should include the following response headers when the
document is requested:
<PRE>
Expires: Tue, 04 Dec 1993 21:29:02 GMT
Keywords: Nanotechnology, Biochemistry
Reply-to: dsr@w3.org (Dave Raggett)
</PRE>
<P>
Popular uses for META include:
<DL>
<DT><META NAME="generator" CONTENT="Some program">
<DD>This indicates the program used to generate this document. It is often
the name of the HTML editor used.
<DT><META NAME="author" CONTENT="Name">
<DD>This indicates the name of the author.
<DT><META NAME="keywords" CONTENT="keyword keyword keyword">
<DD>Provides keywords for search engines such as Infoseek or Alta Vista.
These are added to the keywords found in the document itself. If you
insert a keyword more than seven times here, the whole tag will be
ignored!
<DT><META NAME="description" CONTENT="This is a site">
<DD>Search engines which support the above tag will now display the
text you specify here, rather than the first few lines of text from
the actual document when the document shows up in a search result. You
have about 1,000 characters for your description, but not all these
will be used.
<DT><META HTTP-EQUIV="refresh" CONTENT="n; URL=http://foo.bar/">
<DD>This is a so-called "meta refresh", which on certain browsers causes
the document mentioned in the URL to be loaded after <I>n</I> seconds.
This can be used for slide shows or for often-changing information, but
has some drawbacks. In particular, if you use a value of zero seconds,
the user can no longer go "Back" with his back button. He will be
transferred to the specified URL, and when he presses "back" there,
he will go back to the document with the refresh, which immediately
redirects him to the document he tried to get away from.
<DT><META HTTP-EQUIV="expires" CONTENT="Tue, 20 Aug 1996 14:25:27 GMT">
<DD>This indicates that the document containing this META tag will
expire at this date. If the document is requested after this date,
the browser should load a new copy from the server, instead of using
the copy in its cache.
</DL>
  <H3>Notes:</H3>
<UL>
<LI>Not all servers use the information from META tags to generate
headers, although some browsers will treat what they find in here like
it was a header.
<LI>The "keywords" and "description" values are currently only used
by <A HREF="http://www.altavista.com/cgi-bin/query?pg=h&what=web#meta">Alta
Vista</A> and 
Infoseek.
</UL>
<HR>
<H2>OL - Ordered list</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><OL> </OL><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>TYPE=1|a|A|i|I, START=<CODE>n</CODE>, COMPACT<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./list/li.html">LI</A><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
The OL tag marks up an ordered list of items. Each item should be
marked up with a <A HREF="./list/li.html">LI</A>, and it will be displayed with a number in
front of it. The appearance of the number can be controlled with the
TYPE attribute:
<UL>
<LI>1 - Arabic numbers (default) (1, 2, 3, 4, ...)
<LI>a - Alphanumeric, lowercase (a, b, c, d, ...)
<LI>A - Alphanumeric, uppercase (A, B, C, D, ...)
<LI>i - Roman numbers, lowercase (i, ii, iii, iv, ...)
<LI>I - Roman numbers, uppercase (I, II, III, IV, ...)
</UL>
<P>
The START attribute indicates where the list should start. The COMPACT
attribute indicates that the list contains only short list items, so
it may be rendered in a more compact way. This is currently not widely
supported.
  <H3>Notes:</H3>
<UL>
<LI>If you want a list with bullets rather than numbers, use <A HREF="./list/ul.html">UL</A>.
<LI>Not all browsers support TYPE and START, so do not assume that
they will work for your visitor.
</UL>
<HR>
<H2>OPTION - Selection list option</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><OPTION> [</OPTION>] <BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>VALUE=<CODE>string</CODE>, SELECTED<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./misc/pcdata.html">Plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./form/select.html">SELECT</A>.<BR></TD>
</TR>
</TABLE>
<P>
The OPTION tag is used inside a <A HREF="./form/select.html">SELECT</A> selection list to indicate
an option. You may not use markup in an option. All options listed will
be displayed in a list or drop-down box, and the user can select one or
more from the list. The VALUE of each option should be unique.
<P>
If you specify the SELECTED attribute, this option will appear selected
when the form comes up initially.
  <H3>Notes:</H3>
<UL>
<LI>Pre-selecting more than one item should only be done if the <A HREF="./form/select.html">SELECT</A>
tag has the MULTIPLE attribute defined.
</UL>
<HR>
<H2>PARAM - Parameters for Java applet</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><PARAM NAME=x VALUE=y><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP><B>NAME=<CODE>string</CODE></B> VALUE=<CODE>string</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>None (<A HREF="../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./special/applet.html">APPLET</A>.<BR></TD>
</TR>
</TABLE>
<P>
The PARAM element is used to provide "command-line" arguments to a
Java applet, which is embedded in a document with the <A HREF="./special/applet.html">APPLET</A>
element. It has two attributes: NAME specifies the name of the argument,
and VALUE specifies the value for this argument.
  <H3>Notes:</H3>
<UL>
<LI>In a Java applet, the names of arguments are treated in a
case-sensitive manner, so make sure you get the case right in the PARAM
tag.
<LI>Anyone can take the source of your Java page and change the values
you supply for your parameters. Make sure the applet can handle this.
</UL>
<HR>
<H2>PRE - Preformatted text</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><PRE> </PRE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>WIDTH=<CODE>n</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
PRE is used to include sections of text in which formatting is critical.
Unlike in the other HTML containers, text in a PRE pair will only be
wrapped at the linebreaks in the source, and spaces will not be collapsed.
You can even use tabs, although it is better to use multiple spaces since
those will always be the right number.
<P>
Text inside this tag will be displayed in a monospaced font to retain
the formatting. This is the reason you cannot include font-changing
tags inside PRE text. Images are excluded because they can introduce
problems with alignment. An image can't be translated to a certain number
of characters.
<P>
The optional WIDTH attribute can be used to indicate how wide the text
is (for example, WIDTH=80 for a typical text file). This would allow
the browser to pick a font which fits the entire text in the current
window. Unfortunately this isn't very widely supported.
  <H3>Notes:</H3>
<UL>
<LI>Although text-level markup is allowed inside PRE, not all tags are
supported.
<LI>A <A HREF="./block/p.html">P</A> tag is strictly not permitted inside PRE, but if a browser
encounters one, it should treat it as two newlines.
<LI>Since HTML tags are permitted inside PRE, you cannot just "insert"
a text file into an HTML document by slapping <PRE> and </PRE>
around them. You have to convert the &, < and > characters into
entities first.
</UL>
<HR>
<H2>P - Paragraph</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><P> [</P>] <BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|center|right<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/address.html">ADDRESS</A>.<BR></TD>
</TR>
</TABLE>
<P>
  The P tag is used to indicate paragraphs. The optional attribute
  ALIGN indicates the preferred alignment for the contents of this
  paragraph. Support for ALIGN=RIGHT is not as large as support for
  the other two. Note that ALIGN=LEFT is the default.
  <H3>Notes:</H3>
<UL>
<LI>Some browsers render extra whitespace when multiple empty
    paragraphs are used in sequence. This is not required by the specs,
    so do not count on this to get vertical whitespace in your document.
<LI>When a paragraph has the ALIGN=CENTER or ALIGN=RIGHT attribute,
    some browsers do not use the default alignment for the next
	paragraph unless this paragraph is explicitly closed.
<LI>In the very first version of HTML, the P tag was an empty tag like
    <A HREF="./special/br.html">BR</A>. Some references and books still claim that this is the case.
    However, HTML 2.0 defines the P tag as a container, and there is
	<EM>no</EM> difference between a paragraph with and one without
	explicit alignment.
<LI>Despite the above, some browsers treat the closing tag as an
    <EM>opening</EM> tag - they insert an extra paragraph break there.
</UL>
<HR>
<H2>SAMP - Sample text</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><SAMP> </SAMP><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
SAMP is used to indicate a sample of text which should be used
literally.  For example, "The text <SAMP>General Protection
Fault</SAMP> is well known to Windows users."
<P>
It differs from <A HREF="./phrase/kbd.html">KBD</A> text in that <A HREF="./phrase/kbd.html">KBD</A> text indicates text the
user must <EM>enter</EM>, whereas SAMP text can also be output.
  <H3>Notes:</H3>
<UL>
<LI>Do not use SAMP if your text requires a monospaced font; use <A HREF="./font/tt.html">TT</A>
instead.
</UL>
<HR>
<H2>SCRIPT - Inline scripts</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><SCRIPT> </SCRIPT><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./misc/pcdata.html">Plain text</A>, but should be a valid script.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./head/head.html">HEAD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The SCRIPT tag is included only to ensure upward compatibility. Newer
versions of HTML will include support for inline scripts, which should
be contained in this tag. The tag should contain a valid script.
<P>
Note that current browsers are only required to hide the contents of
the SCRIPT tag, it does not have to use the information contained therein.
<P>
In the meantime, if you need scripts in your documents, put them inside
HTML <A HREF="./misc/comment.html">comments</A>.
  <H3>Notes:</H3>
<UL>
<LI>Not all browsers support scripts.
<LI>Since not all browsers will hide the tag's contents, you may want
to enclose it in <A HREF="./misc/comment.html">comments</A>.
<LI>Note that if your script uses the ">" or "--" symbols, some
browsers may end the comment accidentally.
</UL>
<HR>
<H2>SELECT - Selection list</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><SELECT NAME=<CODE>string</CODE>> </SELECT><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP><B>NAME=<CODE>string</CODE></B>, SIZE=<CODE>n</CODE>, MULTIPLE<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./form/option.html">OPTION</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>, but must be inside a <A HREF="./block/form.html">FORM</A>.<BR></TD>
</TR>
</TABLE>
<P>
The SELECT tag is used inside forms to generate a list of items from
which the user can select one or more. Each item is listed in an
<A HREF="./form/option.html">OPTION</A> tag. The value of the selected <A HREF="./form/option.html">OPTION</A> tag is assigned
to the NAME of the SELECT tag, and both are sent to the server when the
form is submitted.
<P>
The SIZE attribute indicates how many items are visible at once. If
set to one, you will get a drop-down list. If it's more than one, you
will get a scrollable list. If the MULTIPLE attribute is selected, the
user can select more than one item from the list.
  <H3>Notes:</H3>
<UL>
<LI>Exactly how a user can select more than one item at once is
dependant on his platform, so do not include "instructions" on how to
do this. They may be wrong and can cause a lot of confusion.
<LI>If you use MULTIPLE, set the SIZE to more than one. This makes it
easier to select more than one item.
</UL>
<HR>
<H2>SMALL - Smaller text</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><SMALL> </SMALL><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The SMALL tag (as well as <A HREF="./font/big.html">BIG</A>) is new. A browser should draw the
enclosed text in a smaller font if available, and ignore the tag otherwise.
Since this tag is new, support for it is not universal. The <A HREF="./special/font.html">FONT</A> tag
can do the same, with SIZE="-1".
  <H3>Notes:</H3>
<UL>
<LI>Nesting SMALL tags may produce text in a smaller font than with just
one SMALL tag, but this is not required by the specs (although it is
recommended).
<LI>It is legal to nest <A HREF="./font/big.html">BIG</A> and SMALL, although the results are
undefined.
<LI>SMALL is not supported by all browsers, so you might want to use
<<A HREF="./special/font.html">FONT</A> SIZE="-1"> instead.
</UL>
<HR>
<H2>STRIKE - Strike-through text</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><STRIKE> </STRIKE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The STRIKE tag specifies that the enclosed text should be rendered in
a strike-through appearance. Usually this is done with a line through
the middle of the text.
  <H3>Notes:</H3>
<UL>
<LI>Since this tag is new, support for it is not universal. If you
absolutely require strikethrough text, you will have to use an image.
</UL>
<HR>
<H2>STRONG - Strongly emphasized text</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><STRONG> </STRONG><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
STRONG is used to indicate strongly emphasized text. While it is often rendered
identical to <A HREF="./font/b.html">B</A>, boldface, using STRONG rather than <A HREF="./font/b.html">B</A> is preferred.
It allows the browser to distinguish between strongly emphasized text and 
other text which must be drawn in boldface in the case where boldface is
not available.
<P>
STRONG text should be rendered distinct from <A HREF="./phrase/em.html">EM</A> text.
  <H3>Notes:</H3>
<UL>
<LI>Do not use STRONG if your text requires boldface; use <A HREF="./font/b.html">B</A> instead.
</UL>
<HR>
<H2>STYLE - Style markup</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><STYLE> </STYLE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>TYPE=<CODE>string</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./misc/pcdata.html">Plain text</A>, but should be valid style markup.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./head/head.html">HEAD</A>.<BR></TD>
</TR>
</TABLE>
<P>
The STYLE tag is included only to ensure upward compatibility. Newer
versions of HTML will include support for style sheets, and this tag
can be used to provide "in-line" style information. The tag should
contain only valid style statements, in the language indicated in
the TYPE attribute.
<P>
Note that current browsers are only required to hide the contents of
the STYLE tag, it does not have to use the information contained therein.
  <H3>Notes:</H3>
<UL>
<LI>Since not all browsers will hide the tag's contents, you may want
to enclose them in <A HREF="./misc/comment.html">comments</A>.
</UL>
<HR>
<H2>SUB - Subscript</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><SUB> </SUB><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
SUB specifies that the enclosed text should be rendered in subscript,
with the enclosed text slightly lower than the surrounding text. This
can be useful for mathematical formulas.
  <H3>Notes:</H3>
<UL>
<LI>Since this tag is new, support for it is not universal. Make sure
that the text would still look readable if the SUB tag weren't used.
</UL>
<HR>
<H2>SUP - Superscript</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><SUP> </SUP><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
SUP specifies that the enclosed text should be rendered in superscript,
with the enclosed text slightly higher than the surrounding text. This
can be useful for mathematical formulas.
  <H3>Notes:</H3>
<UL>
<LI>Since this tag is new, support for it is not universal. Make sure
that the text would still look readable if the SUP tag weren't used.
</UL>
<HR>
<H2>TABLE - HTML Tables</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><TABLE> </TABLE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|center|right, WIDTH=<CODE>n</CODE>|<CODE>p%</CODE>, BORDER=<CODE>n</CODE>, CELLSPACING=<CODE>n</CODE>, CELLPADDING=<CODE>n</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP>One <A HREF="./table/caption.html">CAPTION</A>, <A HREF="./table/tr.html">TR</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
Table start with an optional caption followed by one or more rows. Each
row consists of one or more cells, which can be either header or data 
cells. Cells can overlap across rows and columns.
<P>
The ALIGN attribute controls the alignment of the table itself, but
not of the individual cells. This can be set either in the <A HREF="./table/tr.html">TR</A>
element for an entire row, or in the <A HREF="./table/td.html">TD</A> and <A HREF="./table/th.html">TH</A> elements for
individual cells. The WIDTH attribute can be a pixel width or a
percentage. It indicates the suggested width of the table, although
the browser can ignore this if it is not possible. A "100%" value
means the table will span across the entire browser window.
<P>
You can specify the width of the border around the table with the BORDER
attribute. This attribute only affects the width of that border, not of
the lines between table cells. If the attribute is omitted, no border
will be drawn.
<P>
However, you can increase the whitespace inside a table. The CELLPADDING
attribute indicates how many pixels there should be between a cell's
contents and the border. CELLSPACING indicates how much whitespace
(in pixels) there should be between individual cells.
<P>
As an example, here is a table from the HTML 3.0 draft:
<PRE>
<TABLE BORDER=1>
  <CAPTION>A test table with merged cells</CAPTION>
  <TR><TH ROWSPAN=2><TH COLSPAN=2>Average
  <TH ROWSPAN=2>other<BR>category<TH>Misc
  <TR><TH>height<TH>weight
  <TR><TH ALIGN=LEFT>males<TD>1.9<TD>0.003
  <TR><TH ALIGN=LEFT ROWSPAN=2>females<TD>1.7<TD>0.002
</TABLE>
</PRE>
<P>
This could appear as follows, in a text browser:
<PRE>
          A test table with merged cells
/--------------------------------------------------\ 
|          |      Average      |  other   |  Misc  |
|          |-------------------| category |--------|
|          |  height |  weight |          |        |
|-----------------------------------------|--------|
| males    |   1.9   |  0.003  |          |        |
|-----------------------------------------|--------|
| females  |   1.7   |  0.002  |          |        |
\--------------------------------------------------/
</PRE>
  <H3>Notes:</H3>
<UL>
<LI>Some browsers (in particular, the 1.x, 2.x and 3.x versions of Netscape) do not
honor the ALIGN attribute on a table with a value of CENTER. For these browsers, enclose
the entire table in a <A HREF="./block/center.html">CENTER</A> or <<A HREF="./block/div.html">DIV</A> ALIGN=CENTER> tag.
<LI>The downside of the above workaround is that on browsers that do
<EM>not</EM> support tables, but <EM>do</EM> support centered text,
the <EM>contents</EM> of the table will be rendered as centered. In
some cases, this can be "fixed" by enclosing the contents of the
table cell with something like <<A HREF="./block/p.html">P</A> ALIGN=LEFT>.
<LI>Avoid using pixel widths for a table. They force that the browser
window is sized to a particular width to see the entire table, which
is not always desirable, let alone possible.
<LI>Tables are often used for page layout purposes. This is not
recommended, since it totally screws up the display for browsers which
do not support tables, and it also often gives awkward results on small
screens.
<LI>Earlier drafts of HTML 3.2 allowed the BORDER attribute to be
given without value (and then the value defaulted to 1). The final
version only permits BORDER=n.
<!-- Some browsers do not render TABLE BORDER=0 identical to TABLE
without a border attribute whatsoever. Bleh. -->
<LI>The HTML 3 draft did not include the values for the
BORDER attribute, so browsers which use this table model might draw
a border around your table when you use BORDER=0.
<LI>An empty table cell is typically drawn differently than a non-empty
cell. If you need a table cell with non content, but with the same
appareance as a non-empty cell, put "&nbsp;" in the cell.
</UL>
<HR>
<H2>TD - Table cell</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><TD> [</TD>] <BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ROWSPAN=<CODE>n</CODE>, COLSPAN=<CODE>n</CODE>, NOWRAP, ALIGN=left|right|center, VALIGN=top|middle|bottom, WIDTH=<CODE>n</CODE>, HEIGHT=<CODE>n</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/p.html">P</A>, <A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./list/dl.html">DL</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./block/hr.html">HR</A>, <A HREF="./table/table.html">TABLE</A>, <A HREF="./block/address.html">ADDRESS</A> as well as <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./table/tr.html">TR</A>.<BR></TD>
</TR>
</TABLE>
<P>
The TD tag is used to mark up individual cells inside a table row. It
may contain almost all tags, including nested tables. If the cell
is a label of some sort, use <A HREF="./table/th.html">TH</A> instead of TD.
<P>
The NOWRAP attribute indicates the contents of the current cell should
not be wrapped. You must use <A HREF="./special/br.html">BR</A> in the cell to force line breaks
to prevent the entire cell from showing up as just one line.
<P>
The ROWSPAN and COLSPAN attributes indicate how many rows or columns
this cell overlaps. If you use these attributes, make sure you count 
correctly or you can get some <EM>very</EM> weird results.
<P>
The ALIGN and VALIGN attributes control the horizontal and vertical
alignment of the current cell. ALIGN can be set for left, right or centered
cells. VALIGN indicates that the table cell's contents should appear
at the top, the middle or the bottom of the row. 
Note that align and valign attributes for a
cell override the values set for the row.
<P>
The WIDTH and HEIGHT attributes can be used to suggest a width and
height for this cell. This should be a value in pixels. Setting 
different widths for multiple cells in the same column, or different
heights for multiple cells in one row can cause unexpected effects.
<P>
For an example on how to construct tables, please see the section
on the <A HREF="./table/table.html">TABLE</A> tag.
  <H3>Notes:</H3>
<UL>
<LI>While it's not strictly required, it is good practice to close each
table cell explicitly. It makes your table easier to read.
<LI>If you include a table inside a table cell, be sure to close all
cells and rows. It is not required, but some browsers get the nested tables
wrong and render them incorrectly.
<LI>An empty cell is usually rendered differently than a cell with
just whitespace inside it. This especially shows if you have a border
defined for your table.
<LI>If you use images in a table cell, be sure to specify the WIDTH
and HEIGHT attributes in the <A HREF="./special/img.html">IMG</A> tag. This allows the browser to
determine the size of the cell in advance, so it can draw the table
before the image is loaded. Otherwise, the table will not appear until
the image has been loaded. This can mean a considerable delay before
your page displays.
</UL>
<HR>
<H2>TEXTAREA - Input area</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><TEXTAREA NAME=<CODE>string</CODE>, ROWS=<CODE>n</CODE>, COLS=<CODE>n</CODE>> </TEXTAREA><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP><B>NAME=<CODE>string</CODE></B>, <B>ROWS=<CODE>n</CODE></B>, <B>COLS=<CODE>n</CODE></B><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./misc/pcdata.html">Plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>, but must be inside a <A HREF="./block/form.html">FORM</A>.<BR></TD>
</TR>
</TABLE>
<P>
The TEXTAREA tag, used inside <A HREF="./block/form.html">FORM</A>s, sets up an area in which the
user can type text. This text will be sent to the server when the form
is submitted. The user can enter more than one line (as opposed to <<A HREF="./form/input.html">INPUT</A>
TYPE=text> which only permits one line), although he will have to
break lines himself.
<P>
The NAME attribute assigns the text area a name, used by the script which
processes the form. ROWS and COLS are used to specify the height and width
of the text area, in number of characters.
<P>
To supply default text for the text area, put it inside the TEXTAREA tag.
You may not use markup for this default value.
  <H3>Notes:</H3>
<UL>
<LI>Not all browsers send the linebreaks that users type (if they do so
at all), so your script may have to rewrap the text itself.
</UL>
<HR>
<H2>TH - Header cell</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><TH> [</TH>] <BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ROWSPAN=<CODE>n</CODE>, COLSPAN=<CODE>n</CODE>, NOWRAP, ALIGN=left|right|center, VALIGN=top|middle|bottom, WIDTH=<CODE>n</CODE>, HEIGHT=<CODE>n</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/p.html">P</A>, <A HREF="./list/ul.html">UL</A>, <A HREF="./list/ol.html">OL</A>, <A HREF="./list/dir.html">DIR</A>, <A HREF="./list/menu.html">MENU</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./list/dl.html">DL</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./block/hr.html">HR</A>, <A HREF="./table/table.html">TABLE</A>, <A HREF="./block/address.html">ADDRESS</A> as well as <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./table/tr.html">TR</A>.<BR></TD>
</TR>
</TABLE>
<P>
Like the <A HREF="./table/td.html">TD</A> tag, a TH is used for a table cell. However, TH should
be used when the cell's contents is a heading of some sort, for
example, when the text is a label for a row of column.
<P>
See the section on <A HREF="./table/td.html">TD</A> for an explanation of the various attributes.
<P>
For an example on how to construct tables, please see the section
on the <A HREF="./table/table.html">TABLE</A> tag.
  <H3>Notes:</H3>
<UL>
<LI>While it's not strictly required, it is good practice to close each
table cell explicitly. It makes your table easier to read.
<LI>If you include a table inside a table cell, be sure to close all
cells and rows. It is not required, but some browsers get the nested tables
wrong and render them incorrectly.
<LI>An empty cell is usually rendered differently than a cell with
just whitespace inside it. This especially shows if you have a border
defined for your table.
<LI>If you use images in a table cell, be sure to specify the WIDTH
and HEIGHT attributes in the <A HREF="./special/img.html">IMG</A> tag. This allows the browser to
determine the size of the cell in advance, so it can draw the table
before the image is loaded. Otherwise, the table will not appear until
the image has been loaded. This can mean a considerable delay before
your page displays.
</UL>
<HR>
<H2>TITLE - Document title</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><TITLE> </TITLE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./misc/pcdata.html">Plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./head/head.html">HEAD</A>.<BR></TD>
</TR>
</TABLE>
<P>
Each document must have exactly one TITLE element. This element provides
the title of the document. It is usually displayed at the top
of the browser's window, but also used to label a bookmark entry for
the document and as a caption in search engine results.
<P>
It may only contain text and entities, but no markup.
  <H3>Notes:</H3>
<UL>
<LI>Make sure the TITLE tag is also useful out of context. It should
still be understandable when it is used as label in a bookmarks file.
<LI>Although it is legal to use entities inside TITLE, not all
browsers are able to handle these properly. It is recommended that
you restrict yourself to the characters
32-126 decimal from <A HREF="../charset/index.html">ISO Latin 1</A>.
<LI>Netscape 1.x had a bug with respect to titles. When more than one
TITLE tag was used in the <A HREF="./head/head.html">HEAD</A>, it would display them in a sequence,
causing a "marquee" effect. This bug has been fixed in later versions.
</UL>
<HR>
<H2>TR - Table row</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><TR> [</TR>] <BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>ALIGN=left|right|center, VALIGN=top|middle|bottom<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./table/table.html">TABLE</A>.<BR></TD>
</TR>
</TABLE>
<P>
HTML tables are constructed as a sequence of rows. Each row of table
cells should be enclosed in a TR tag. The end tag is optional, since
it is usually obvious to see where a row ends - where the new row
begins, or where the entire table ends.
<P>
The ALIGN and VALIGN attributes control the horizontal and vertical
alignment of the entire row. ALIGN can be set for left, right or centered
cells. VALIGN indicates that the table cell's contents should appear
at the top, the middle or the bottom of the row. 
<P>
For an example on how to construct tables, please see the section
on the <A HREF="./table/table.html">TABLE</A> tag.
  <H3>Notes:</H3>
<UL>
<LI>While it's not strictly required, it is good practice to close each
table row explicitly. It makes your table easier to read.
<LI>If you include a table inside a table cell, be sure to close all
cells and rows. If you don't, some browsers may get the nested tables
wrong and render it incorrectly.
</UL>
<HR>
<H2>TT - Teletype font</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><TT> </TT><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
The TT tag specifies that the enclosed text should be rendered in a
teletype (monospaced) font. This can be used to simulate typewriter
output. If possible, use <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A> or <A HREF="./phrase/kbd.html">KBD</A> instead. These
tags allow the browser to pick a suitable rendering for each specific
case, instead of the generic rendering you get with TT. It also makes
the job easier for convertors and search robots.
  <H3>Notes:</H3>
<UL>
<LI>Text inside TT is not preformatted text like <A HREF="./block/pre.html">PRE</A>; spaces are
collapsed and newlines ignored.
</UL>
<HR>
<H2>UL - Unordered list</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><UL> </UL><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>TYPE=disc|square|circle, COMPACT<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A> and <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
The UL element indicates an unordered list. Every item in a list is
marked with <A HREF="./list/li.html">LI</A>, and usually appears with a bullet of some sort in
front of it. If you need numbering, use <A HREF="./list/ol.html">OL</A> for an ordered list.
<P>
The type of bullet can be suggested with the TYPE attribute. You have
three possible styles: "disc" for a closed bullet, "square" for an open
square and "circle" for an open bullet. The COMPACT attribute is used to
indicate that the list items are short, so the browser can render the list
more compact. For example, it could put more than one item on a line.
  <H3>Notes:</H3>
<UL>
<LI>Do not put anything but <A HREF="./list/li.html">LI</A> list items inside an UL.
<LI>The COMPACT attribute is not widely implemented.
<LI>Not all browsers support the TYPE attribute, so if you use it, make
sure the list still "works" without it.
</UL>
<HR>
<H2>U - Underline</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><U> </U><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
U is used to indicate the enclosed text should be underlined. As most
browsers use underlining to indicate hyperlinks, try to avoid this tag.
It can confuse your users if they see "hyperlinks" that do not work.
<P>
Underlining is an alternative rendering for italic text (for example,
on typewriters). Since HTML has an <A HREF="./font/i.html">I</A> tag for italics, use that
if this is what you are using U for.
  <H3>Notes:</H3>
<UL>
<LI>Most graphical browsers do not support underlined text, since it
makes it harder to distinguish text from hyperlinks.
</UL>
<HR>
<H2>VAR - Variable</H2>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH> 
<TD VALIGN=TOP><VAR> </VAR><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH> 
<TD VALIGN=TOP>None.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH> 
<TD VALIGN=TOP><A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./special/img.html">IMG</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/basefont.html">BASEFONT</A>, <A HREF="./special/br.html">BR</A>, <A HREF="./special/map.html">MAP</A>, <A HREF="./form/input.html">INPUT</A>, <A HREF="./form/select.html">SELECT</A>, <A HREF="./form/textarea.html">TEXTAREA</A> and <A HREF="./misc/pcdata.html">plain text</A>.<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH> 
<TD VALIGN=TOP><A HREF="./body/body.html">BODY</A>, <A HREF="./block/div.html">DIV</A>, <A HREF="./block/center.html">CENTER</A>, <A HREF="./block/blockquote.html">BLOCKQUOTE</A>, <A HREF="./block/form.html">FORM</A>, <A HREF="./table/th.html">TH</A>, <A HREF="./table/td.html">TD</A>, <A HREF="./list/dt.html">DT</A>, <A HREF="./list/dd.html">DD</A>, <A HREF="./list/li.html">LI</A>, <A HREF="./block/p.html">P</A>, <A HREF="./block/h1.html">H1</A>, <A HREF="./block/h2.html">H2</A>, <A HREF="./block/h3.html">H3</A>, <A HREF="./block/h4.html">H4</A>, <A HREF="./block/h5.html">H5</A>, <A HREF="./block/h6.html">H6</A>, <A HREF="./block/pre.html">PRE</A>, <A HREF="./block/address.html">ADDRESS</A>, <A HREF="./font/tt.html">TT</A>, <A HREF="./font/i.html">I</A>, <A HREF="./font/b.html">B</A>, <A HREF="./font/u.html">U</A>, <A HREF="./font/strike.html">STRIKE</A>, <A HREF="./font/big.html">BIG</A>, <A HREF="./font/small.html">SMALL</A>, <A HREF="./font/sub.html">SUB</A>, <A HREF="./font/sup.html">SUP</A>, <A HREF="./phrase/em.html">EM</A>, <A HREF="./phrase/strong.html">STRONG</A>, <A HREF="./phrase/dfn.html">DFN</A>, <A HREF="./phrase/code.html">CODE</A>, <A HREF="./phrase/samp.html">SAMP</A>, <A HREF="./phrase/kbd.html">KBD</A>, <A HREF="./phrase/var.html">VAR</A>, <A HREF="./phrase/cite.html">CITE</A>, <A HREF="./special/font.html">FONT</A>, <A HREF="./special/a.html">A</A>, <A HREF="./special/applet.html">APPLET</A>, <A HREF="./table/caption.html">CAPTION</A>.<BR></TD>
</TR>
</TABLE>
<P>
VAR is used to mark up variables, for example in discussions of
computer programs. Using this tag allows programs to automatically
generate lists of the used variables. Example: "The variable
<VAR>c</VAR> is used as a counter in this program."
  <H3>Notes:</H3>
<UL>
<LI>VAR will usually be rendered in a monospaced font, but multiple spaces
are collapsed, unlike in <A HREF="./block/pre.html">PRE</A>. This can screw up the spacing in
your VAR if you want to provide more than one line.
</UL>
<HR>
<CENTER>
<P>
<B><IMG SRC="icon/wdglogo-small.gif" WIDTH=105 HEIGHT=40 ALT="Web Design Group" ALIGN=RIGHT></B><BR>
<A HREF="index.html" TITLE="Index for Wilbur">Wilbur index</A> ~
<A HREF="overview.html" TITLE="Overview of HTML 3.2 tags">Tag overview</A> ~
<A HREF="mailto:galactus@htmlhelp.com" TITLE="Wilbur reference feedback">Feedback</A>
<P>
<SMALL>
Copyright © 1997 <A HREF="http://www.stack.nl/%7Egalactus/">Arnoud "Galactus" Engelfriet</A>.
</SMALL>
</CENTER>
</BODY>
</HTML>
 |