Friday 30th of July 2010

Archive for the ‘XHTML & CSS’ Category

How to choose a digital web agency – What questions to ask?

If you’re thinking about getting yourself a brand new website for a business venture its always hard to work out what you actually want your website to do for you and your business, what its objectives will be and how it will develop into a strong brand for a bright future.
It is so easy to [...]

Reset CSS

Reference for resetting CSS
/* RESET */
html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,p,
blockquote,fieldset,input { margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,em,
strong,th { font-size: 1em; font-weight: normal; font-style: normal; }
ul,ol { list-style: none; }
fieldset,img { border: none; }
caption,th { text-align: left; }
table { border-collapse: collapse; border-spacing: 0; }

Standard META Tags

A list of standard META tags.
<head>
<title></title>
<meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ />
<meta name=”author” content=”” />
<meta name=”copyright” content=”” />
<meta name=”description” content=”” />
<meta name=”keywords” content=”” />
<meta name=”robots” content=”index, follow” />
</head>

CSS3 – Backgrounds

For the last part of our introductory series to CSS3, we will be taking a look at the new background properties. These include background size, using more than one background for an element, and background origin (which effects the position of a background).

CSS3 – Multiple Columns

Multiple columns are a major facet of laying out text – newspapers have used them for decades. So important are they that it is amazing that the current way to achieve a multi column layout is one of the most complex techniques for a new designer to grasp.