Choosing a DOCTYPE

Choosing a DOCTYPE

DOCTYPEs According to the World Wide Web Consortium (W3C), each (X)HTML document needs to include a document type declaration (DOCTYPE). This DOCTYPE has to be placed at the very start of any (X)HTML document and “tells” any tool which processes (X)HTML documents (browsers, validator, etc) which version of (X)HTML to use to render the page. If you do not use a DOCTYPE at all the browser will render the page in quirks mode instead of standards mode which will usually give you all sorts of strange results as each browser uses different...

read more

Style Tags Explained

Style Tags Explained

Basic STYLE TAGS and CSS ( Cascading style sheets ) Explained. The CSS (cascading style sheets) syntax is made up of three parts: a selector, a property and a value: Example: [cc lang="css"] selector {property: value;} [/cc] The above code stands for something like this below. [cc lang="css"] .main { width: 800px; } [/cc] Now the style tag's are at the beginning and at the end of your css (cascading style sheets) to make the css codes work like example below and to show the style / coloring / etc: of the web...

read more

Handy CSS and HTML Cheat Sheets

Handy CSS and HTML Cheat Sheets

Hey guys. Here is a pretty little handy CSS and HTML cheat sheet for beginners to pro's I thought i would share. Had it posted on our old tutorial site and also support forum so.. Just to have sitting around when needed for some of you guy's out there wanting to learn and have something handy sitting on your own computer that you could look at when ever you feel like it. Awesome of course for beginners to learn from. Has a lot of different property's and selectors to check out. I found this to be one of the best out so far (besides if i...

read more

All you need to know about Favicons

All you need to know about Favicons

In this tutorial I am going to show you how to create your own favicon and make it show up on all the pages of your site. What is a Favicon? The favicon is the small image next to the URL in the address bar (as shown below) and next to the title on any tab that is open. Why is a Favicon Important? I think a favicon is important as it helps to give your site an identity, a brand almost. For example if the user has a lot of tabs open then they can easily tell which site is which by looking at the favicon (pictures speak louder than...

read more

How to use Header tags Correctly

How to use Header tags Correctly

Something I notice more and more on websites are that header tags are being used in the wrong way or in some worse cases not at all. I thought that it would benefit people if I explained a little about why headers should be used correctly and how to use them correctly. Why Even Use Them? I guess i'm an enforcer of using good semanticly correct code and it will annoy me much more than the average user if header tags are used inappropriately, but this isn't to say that you shouldn't listen, there are benefits after all: They help with...

read more