Skip to main content

Tags under DTDs

The different set of tags under the different DTD are as below

1:  XHTML 1.0 Strict        XHTML 1.1 Basic  
2:  a                     a  
3:  abbr                  abbr  
4:  acronym               acronym     
5:  address                address  
6:  area                  b  
7:  b                     base  
8:  base                  big  
9:  bdo                   blockquote  
10:  big                   body  
11:  blockquote             br     
12:  body                  button  
13:  br                    caption  
14:  button                cite  
15:  caption               code  
16:  cite                   dd  
17:  code                  dfn  
18:  col                   div  
19:  colgroup              dl     
20:  dd                    dt  
21:  del                   em  
22:  dfn                   fieldset  
23:  div                   form  
24:  dl                    h1  
25:  dt                    h2  
26:  em                   h3  
27:  fieldset                h4    
28:  form                  h5  
29:  h1                    h6  
30:  h2                    head  
31:  h3                    hr  
32:  h4                    html  
33:  h5                    i  
34:  h6                    img  
35:  head                  input  
36:  hr                    kbd  
37:  html                  label  
38:  i                     legend  
39:  img                  li  
40:  input                 link  
41:  ins                   meta  
42:  kbd                  noscript  
43:  label                 object  
44:  legend                ol  
45:  li                    optgroup  
46:  link                  option  
47:  map                  p  
48:  meta                 param  
49:  noscript               pre  
50:  object                q  
51:  ol                    samp  
52:  optgroup              script    
53:  option                select  
54:  p                    small  
55:  param                span  
56:  pre                   strong  
57:  q                    style  
58:  samp                 sub  
59:  script                sup  
60:  select                table   
61:  small                 td  
62:  span                 textarea  
63:  strong                th  
64:  style                 title  
65:  sub                  tr  
66:  sup                  tt  
67:  table                 ul  
68:  tbody                 var  
69:  td                       
70:  textarea                       
71:  tfoot                       
72:  th                       
73:  thead                       
74:  title                       
75:  tr                       
76:  tt                       
77:  ul                       
78:  var                 

Comments

Popular posts from this blog

JavaScript Variables-Storage & Declaration

Now we have understood how simple scripting in JavaScript is written. Let us take in some input from the user using the prompt(); function. prompt(); function: The prompt function prompts the user to input data into it by providing a textbox.You also get two buttons to input your reaction.Hence the interactivity. Now the website has asked the input data, now let it process it and act upon it. You have entered the data asked by the webpage prompt, now let us store it in a variable. STORING OF VARIABLES USING prompt(); Storing the data directly upon entering is done using the variable declaration along with the prompt input function separated by a "=" sign. var num = prompt("Enter a number"); DECLARING OF VARIABLES In JavaScript variables are declared using the "var" keyword. Any variable can be created using this keyword, irrespective of the type of data it stores viz.textual,numerical,symbolical,patterns. Sample variable...

CSS Font Weight

In the earlier post, we looked at the font-style attribute. It gives some styles like italic,normal,oblique. But what about the bold. The bold style is defined under the font-weight attribute. The font weight attribute can be defined in many different ways, let us have a look at some basic ways like normal,bold,bolder,lighter. 1: <?xml version = "1.0" encoding="utf-8"?> 2: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 3: <html xmlns = "http://www.w3.org/1999/xhtml"> 4: <head> 5: <title>CSS Styling</title> 6: </head> 7: <body> 8: <p class="red"> 9: Red 10: </p> 11: <p class="blue"> 12: Blue 13: </p> 14: <p class="green"> 15: Green 16: </p> 17: <style> 18: p.red 19: { 20: color:red; 21: ...

Simple XHTML 1.0 Strict program with 5 tags (html,head,title,body,p)

This program below shows the usage of basic 5 tags/XHTML elements html | head | title | body | p 1: <?xml version = "1.0" encoding="utf-8"?> 2: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 3: <html xmlns = "http://www.w3.org/1999/xhtml"> 4: <head> 5: <title> This is the title of the page</title> 6: </head> 7: <body> 8: <p> 9: Hello Web! 10: </p> 11: </body> 12: </html>