Please check this site, http://www.w3schools.com/default.asp it might help you or go to www.w3.org
2006-08-07 08:10:59
·
answer #1
·
answered by Mag 7
·
0⤊
0⤋
There is really nothing to show. All you are doing is stuff like this:
Blah BLAH Blah
and replacing it with
css file:
.bigred { color: red; font-size: 2em; }
html:
Blah BLAH Blah
That is, you take the formatting out of the html and put it somehwere else. This at first might seem counterproductive. It isn't.
As for xhtml, that means little more than putting trailing / characters in everything:
html:
xhtml:
Xhtml would be a good thing, except most people declare their file correctly - like this for example:
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
And then negate it by declaring:
which says "this is really just html for extra / characters". It is pretend xhtml. But real xml is much more demanding and makes it harder to add javascript (too bad though. Sometime things of greater benefit just take more work.)
http://www.w3.org/TR/xhtml-media-types/
For getting a good handle on this stuff, try
http://december.com/html/
which covers everything and has lots of demos and handy tools.
(When there, you are expected to right-click and view the source to see how things are done.)
2006-08-07 08:49:29
·
answer #2
·
answered by sheeple_rancher 5
·
0⤊
0⤋
Finally, that's what I was looking for! Thanks to author of this question.
2016-08-23 03:46:45
·
answer #4
·
answered by Anonymous
·
0⤊
0⤋