There would be times that you’ll need to go to the internet and log on to a search engine to get some answers. Usually the most popular of these search engines is Google and Yahoo. However, there are other search engines out there that can better suit your searches depending on the situation.
If you need [...]
Filed under: Information, Tips on January 31st, 2008 | 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 crawls the Internet and [...]
Filed under: HTML, Tutorials on January 25th, 2008 | 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 out developers got [...]
Filed under: HTML, Tutorials on January 21st, 2008 | 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.
HTMLTree comment: Most web [...]
Filed under: HTML, Tutorials on January 18th, 2008 | No Comments »
All people have various ways of expressing themselves and normally they would be unique from others. Not many people place identity on their sites for fear of being laughed at. But on the web, anything is possible and can be done. All you have to do is make a simple design from your end which [...]
Filed under: Tips on January 17th, 2008 | 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 14th, 2008 | No Comments »
Webpages are written in HTML - a simple scripting language.
HTML is short for HyperText Markup Language.
Hypertext is simply a piece of text that works as a link.
Markup Language is a way of writing layout information within documents.
Basically an HTML document is a plain text file that contains text and nothing else.
When a browser opens an [...]
Filed under: HTML, Tutorials on January 11th, 2008 | No Comments »