CSS Help & Tutorial by 600Host!

July 30th, 2010

What is CSS? CSS is a code that you can use to help build your website. Our UK web hosting uses this as a primary code when designing your website because it is one of the easiest ways to build a website. It is used by numerous web hosting companies to create their web page, and it is the primary source of coding in dreamweaver Read More...

Css Tutorial – Lesson 1

July 24th, 2010

To get going with CSS in your web design, use this series of CSS tutorials. Well post 2 a month here. CSS files have the extention .css and are linked to the page using the link tag found inside the tags of your HTML document.For example, my site's style sheet may be called SiteStyles Read More...

Top 4 FREE CSS Tutorial Sites To Cut Your learning Curve Time In Half

July 20th, 2010

Cascading Style Sheets (CSS) is a style sheet language used to describe the presentation semantics (that is, the look and formatting) of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can be applied to any kind of XML documentCSS, is a powerful method of organizing the way information is displayed on a web page Read More...

Formatting Text with CSS

April 1st, 2010

Setting Up the HTML Code The HTML code for this css tutorial contains three paragraphs of text as shown below. The contents of these paragraphs are wrapped inside <font> elements. The first paragraph has been set to a larger font size. It has also been colored red and style bold and italic. <p align="center"> <font size="4" color="#990000" face="times, times new roman"> <b><i>Example of Text Style with CSS</i></b> </font> </p><p> <font size="2" face="arial, helvetica"> Here is another paragraph using inline css </font> </p> <p> <font size="2" face="arial, helvetica"> Here is third paragraph using inline css </font> </p> <p> <font size="2" face="arial, helvetica"> inline css can be fun Read More...

CSS, How to Style with Margins

December 16th, 2009

When designing a CSS based website it is very useful to understand Margins. I have found that it is much easier to deal with browser compatibility when  one uses proper margin styles. Trying to set a top: -10px seems to cause browser issues that can be easily avoided by using margin-top:-10px. Margins can be applied to the outside of any block level or inline element Read More...