More Web Design Tutorials

HTML

Creating Center-aligned Pages with CSS

March 6, 2011

A website tends to look more balanced when it’s centered on the monitor, instead of clinging to the left side with lots of white space on the right. This looks even worse with increased resolution. And it’s not that folks will use that white space to make notes…..

read more


Using HTML to Define the Parts of a Webpage

March 6, 2011

A webpage usually consists of several different parts – of course that can vary depending on content and design, but almost every page has a header, a navigation, content, and a footer. We’ve already discussed the beauty of an external stylesheet to define the look and layout of an entire website. For this reason, it’s very useful to proclaim the specific parts clearly in the html, so we can address them in the stylesheet.

read more


Basic HTML – Deprecated Tags

March 6, 2011

There is a list of HTML tags that have been deprecated, meaning they are outdated and should be avoided. Since browsers in general are backwards compatible, those tags still work, but there is no guarantee that they will continue to do so. And since using CSS is a much better, cleaner way to do things – then why NOT use it?

read more


Basic HTML – HTML Tables

February 28, 2011

Tables are often misused to lay out a page. Before CSS positioning, that was a good solution, but is no longer necessary, and with the better alternative, a bad idea. It creates quite a mess out of the code, which causes problems with spiders and search engines and makes updating a page much harder. However, using tables to display tabular date – which is what they are meant for – is perfectly fine.

read more


Basic HTML – HTML Lists

February 26, 2011

There are three different types of lists that can be created with HTML: Ordered Lists, Unordered Lists, and Definition Lists. When to use which list largely depends on the content that’s being presented.

read more


Basic HTML – Inserting Images

February 26, 2011

Another important and very useful feature of a website is the display of images. When coding a site, so, one does not actually include or insert images at all – the browser does that for us. We just need to tell the browser where to find and how to display the image.

read more


Basic HTML – Creating a Bookmark (Internal Hyperlink) Part II

February 25, 2011

In addition to links that lead away from the current page, there are also ‘internal’ links – hyperlinks that take one to a specific spot on the current page. Those spots are called ‘bookmarks’ and the most frequent bookmark that’s being linked to is ‘go to top’.

read more