Two ways to apply CSS to a web page. Internal CSS You can add CSS to your HTML documents by simply placing it within the document header. For example, you can specify background color for your HTML document like this: < html> < head> … < style type="text/css"> body { background-color: red;} < /style> < [...]
Filed under: CSS, Tutorials on November 10th, 2010 | No Comments »
Cascading Stylesheets (CSS) is a web design and development technique which has quickly become the de-facto standard for creating web pages. The main purpose of using HTML and CSS is to separate presentation from content: HTML is used for the text and images, while CSS is used to determine their position and look on the [...]
Filed under: CSS, Tutorials on October 10th, 2010 | No Comments »
As far as the web is concerned, there over a million websites to visit and what really makes them unique would be the domain name and the type of programming language that was used for them. This is one reason why sometimes we run into script errors which would require us to download some add-ons [...]
Filed under: CSS, HTML, Tips on December 24th, 2009 | No Comments »
One thing you will certainly be impressed with is the types of interactive designs that most web programmers put into sites today. Menus can be enhanced using dropdown options or even simple highlights. While they may seem technical, they are scripts that can be easy to use. Underneath the Title Bar are other bars that [...]
Filed under: CSS, Tips on September 27th, 2009 | No Comments »
image source: www.w3.org Today we can do many things on the world wide web. I will teach you some information about the web. Web pages – is a page that is seen on the world wide web. It gives us information, do some work, listen to sound or watch a video. Website – it is [...]
Filed under: CSS, General, HTML, Information, PHP, Tips, Tutorials on August 9th, 2008 | No Comments »
Content is everything you need to be optimized on the web. Images and graphics have become secondary and apparently most of this can be seen as a logical occurrence; you need content to provide information and the web is all about information today. Many fail to realize that content development is the key towards great [...]
Filed under: CSS, HTML, PHP, Tips on March 27th, 2008 | No Comments »
The basic structure of an CSS declaration Every CSS document is composed of many CSS declaration that follow the same syntax. It is of the form: Selector {property: value} Selectors Selectors can be page elements, div elements, or class elements. Page elements can be recognized by the absence of any symbol before the element’s name. [...]
Filed under: CSS, Tutorials on February 25th, 2008 | No Comments »