Defunct HTML

liunx

Guest
Hi<br />
<br />
I've discovered that I am using Tags that are no longer 'proper' HTML, to keep up to date with changes can anyone tell me if there is somewhere I can subsribe to that will let me know when a tag is replaced with another tag or if it has become obselete all together!<br />
<br />
Why does technology do this to all of us! I really don't get why <b> is now <strong> and doubt that it's had a major impact on my life!<br />
<br />
Anyway, enough of the whinging! Any help would be most appreciated!<!--content-->It's not that B is now STRONG, it's just that you ought not to be using B at all. Long, long ago the internet was thought of as a visual medium and graphical browsers developed that all displayed the same set of HTML elements in essentially the same fashion. HTML 3.2 (<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-html32">http://www.w3.org/TR/REC-html32</a><!-- m -->) was an attempt to describe this set of elements. But that style of HTML doesn't work if the end user is blind or is simply using a non-graphical browser. HTML 4.01 (<!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/">http://www.w3.org/TR/html4/</a><!-- m -->) was developed so that web pages would work on all browsers. HTML 4.01 is essentially a subset of HTML 3.2. Most everything related to presentation has been removed in favor of CSS. That some text is bold means nothing to someone using a Braille browser but strong emphisis will be presented somehow. The idea is the separation of content from presentation. You mark up the content so that it still makes sense without your presentation. <br />
<br />
You can follow all officail changes, and even participate in the process, at the W3C (<!-- m --><a class="postlink" href="http://www.w3.org/">http://www.w3.org/</a><!-- m -->).<!--content-->Thank you, I will definetly make an effort to have a better understanding of what tags I should/should not be using to make my coding more effective!<!--content-->
 
Back
Top