Deprecated Tags and Attributes Here’s the List of Deprecated Tags and Attributes, for info and to check because you may want to avoid them. applet basefont center dir font (use CSS) isindex menu s and strike u You should also know the deprecated attributes too. align alink background bgcolor clear code compact color border hspace [...]
Filed under: HTML, Tutorials on September 10th, 2010 | No Comments »
Map tag < img src="hotdog.gif" alt="hotdog" usemap="#planetmap" /> < map name="planetmap"> < area shape="rect" coords="0,0,118,28" href="a.html" alt="A" /> < /map> If you never used map tags, then consider yourself lucky. Newer technique such as image slicing or Macromedia Flash has allowed us the flexibility of performing everything this tag has to offer. It was useful [...]
Filed under: HTML, Tutorials on August 10th, 2010 | No Comments »
Frames < frameset cols="20%, 80%"> < frame src="a.html" /> < frame src="b.html" /> < /frameset> Yep, that’s right. I said it. If you’re implementing frames for a client, you should be shot. Frame and frameset are ugggg-ly. Maybe it’s due to their old age. If you’re using frames to avoid multiple instances of the same [...]
Filed under: HTML, Tutorials on July 10th, 2010 | No Comments »
GOOGLE FRIENDLINESS < title> EasyWebTutorials.net < title/> < meta name="Description" content="foo" /> < meta name="Keyword" content="bar" /> On this planet, google is king. Have you seen their stock prices lately?! If you plan on publishing your webpage on the Internet, then you must not omit the title and meta tags. Google has a spider that [...]
Filed under: HTML, Tutorials on May 10th, 2010 | No Comments »
TAGS < html>< head>< body>… All tags should be lowercase. Call it the lazy man rule of coding, but I love this rule. It’s one of a handful of rules for being XHTML 1.0 compliant. Now you’re thinking, what the heck?! HTML (w3) standards was a mess, now there’s XHTML?? Yes, a bunch of whacked [...]
Filed under: HTML, Tutorials on April 10th, 2010 | No Comments »
DOCTYPE < !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN" "http://www.w3.org/TR/html4/strict.dtd"> The DOCTYPE is used to determine how the browser will render your code. There is one standard for HTML, but not one browser. Having the DOCTYPE in the beginning of all your HTML pages helps keep the browser defined in a specific set of standards. [...]
Filed under: HTML, Tutorials on March 10th, 2010 | No Comments »
When you write HTML text, you can never be sure how the text is displayed in another browser. Some people have large computer displays, some have small. The text will be reformatted every time the user resizes his window. Never try to format the text in your editor by adding empty lines and spaces to [...]
Filed under: HTML, Tips, Tutorials on January 10th, 2010 | No Comments »
As far as the web is concerned, there over a million websites to visit and what really makes them unique would be the domain name and the type of programming language that was used for them. This is one reason why sometimes we run into script errors which would require us to download some add-ons [...]
Filed under: CSS, HTML, Tips on December 24th, 2009 | No Comments »
Now you may have encountered the term CSS on the net which is simply an extension for the basic HTML command set that allows more style and control for your web page. The formatting of text, alignment and other nuances that makes a web page utterly pleasing to look at are all done with CSS [...]
Filed under: General, HTML, Information on May 27th, 2009 | No Comments »
You may have run across the term in your browsing and with the many annoying pop-up windows that advertises such services. Hosting is actually a simpler way of getting a web page on the internet without much cost. In the early days of the internet, hosting used to be done by each and every company [...]
Filed under: General, HTML, Information on March 27th, 2009 | No Comments »