IMeye – An Written Explanation…
Keyword Research – Been there done that… right?
Maybe not… because we think we’ve completely reinvented it and have …
![]()
Cascading Style Sheets (CSS) were originally created by the World Wide Web Consortium (W3C) to integrate an advanced mechanism for defining the presentation of web content.
Initially, HTML had almost no presentational tags such as the <font> tag and the color attributes. It was a markup language to present data such as academical research papers and educational documents. Later on, as the Internet evolved and its marketing potential was discovered by companies such as Netscape and Microsoft, the aforementioned presentational tags were invented and integrated into the web browsers. However this eventually led to a style chaos, as the web pages turned into a dump for all these presentational tags and their attributes.
Cascading Style Sheets takes care of this chaos by managing all of the styles used by your web pages within one single sheet file. Inside this sheet file, web authors define all of their styles and then just refer to them at necessary points in their web pages. Not only that, style sheets can change the looks of all instances of an HTML element such as a level one heading (<h1> tag) with one single line.
If you enjoyed this lesson, please link to it
We have learned in Lesson 1-02 that an HTML document is composed of two parts – the “body” part (where the visible content is stored) and the “head” part (where information about the document or …
Online Web Design Course is going to continue by exploring web “forms” – the predetermined area where surfers can input information (i.e. text areas, small radio buttons, check boxes, drop down menus, search boxes are …
Welcome to the next lesson of your free online web design course. If you feel great about your progress so far, then kudos to you – and some more delicious HTML tags and attributes, of …
We are probably at the most vital spot of our free online web design course. You are going to learn how to add hyperlinks (or shortly, “links”) to your web page!
To add a hyperlink, you …
This section of your free online web design course covers “spacer” images, which are basically 1×1 dimension, transparent GIF images used to create useful blank spaces in a web page.
For example if you want two …
This section covers the PNG image file format, which was developed as an advanced alternative to the GIF format.
PNG (pronounced “ping”) stands for “Portable Network Graphics” and it is a highly advanced image file format …
This section of Online Web Design Course will cover the difference between GIF and JPEG file formats.
GIF (Graphic Interchange Format) and JPEG (Joint Photographic Experts Group) are both image file compression formats. They both compress …
In order to set a size to an image, we’re going to use the “width” and “height” attributes of the <img> tag. These attributes are generally used to preset the size of the images in …
“Alternative text” is the text that appears when you hover your mouse over an image. Actually, the real reason alternative text should be used along with every significant image on your HTML document is that …
If you wish to add an image to a spot on your HTML document, you can simply use the <img> tag. The general usage includes the “src” attribute to indicate the source file (i.e. location …