image source: www.w3.org
Today we can do many things on the world wide web. I will teach you some information about the web.
Web pages - is a page that is seen on the world wide web. It gives us information, do some work, listen to sound or watch a video.
Website – it is a compilation of [...]
Filed under: CSS, General, HTML, Information, PHP, Tips, Tutorials on August 9th, 2008 | No Comments »
CSS
< link rel="stylesheet" type="text/css" href="all.css" />
< style type="text/css">@import “noNav4.css”;< /style>
The browser was created before the rise of CSS. What does this mean? Well, it means that old browsers won’t understand your CSS files. In fact some browsers, sorry I mean Netscape 4, will crash at the sight of CSS.
The first line will work for all [...]
Filed under: HTML, Tutorials on July 4th, 2008 | No Comments »
What is an HTML File?
HTML stands for Hyper Text Markup Language
An HTML file is a text file containing small markup tags
The markup tags tell the Web browser how to display the page
An HTML file must have an htm or html file extension
An HTML file can be created using a simple text editor
Let’s Try It?
If you [...]
Filed under: HTML, Tutorials on June 7th, 2008 | No Comments »
One thing that web is full of will be people who could care less if they are classified as spam or authentic users. These people have something else in mind. Outside providing havoc to your site, they are trying to market their own sites which are totally undefined.
They love to prey on beginners. Just [...]
Filed under: HTML, Tips on April 5th, 2008 | No Comments »
Before audio and video enhancements made their way into the web scripting scene, graphic interface format files were the talk of the town before. Animations had their share of popularity, mostly human made but adored by many.
Today, it is all about flash and videos. They have totally changed the age of graphical interface files. [...]
Filed under: HTML, Tips on April 1st, 2008 | No Comments »
Content is everything you need to be optimized on the web. Images and graphics have become secondary and apparently most of this can be seen as a logical occurrence; you need content to provide information and the web is all about information today.
Many fail to realize that content development is the key towards great [...]
Filed under: CSS, HTML, PHP, Tips on March 27th, 2008 | 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 March 24th, 2008 | No Comments »
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 and vspace
link
noshade
nowrap
size
start
text
value
vlink
width
Now for the full list of deprecated tags and attributes according to HTML 4.01 specs for W3schools.org
Deprecated
[...]
Filed under: HTML, Tutorials on February 15th, 2008 | 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 in the primitive years, but I [...]
Filed under: HTML, Tutorials on February 11th, 2008 | 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 content, I would suggest newer [...]
Filed under: HTML, Tutorials on February 8th, 2008 | No Comments »