There are two ways you can add a CSS stylesheet into the head of your HTML or XHTML document. The first way is to use the style tag:
<html>
<head>
<style type="text/css">
body { font-family: verdana, arial; }
</style>
</head>
...
The second way to insert CSS into your HTML document in the HEAD section is by using the link tag, for example:
<html> <head> <link href="/style.css" rel="stylesheet" type="text/css"> </head> ...
In the first method we are writing the CSS directly in the HTML or XHTML document, in the second example we are linking to a single file called style.css. Most people prefer the second method because it allows you to keep all your CSS code in one file, rather than scattered throughout many files. If you want to change a color or font, you only have to edit one file.
Need to restart coldfusion from the command prompt in unix or linux? Chances are one of the following commands will work:
/etc/init.d/coldfusion restart
Or
/opt/coldfusionmx/bin/coldfusion restart
Or
service coldfusion restart
Or
/etc/init.d/coldfusionmx restart
IBM today announced Many Eyes, a site for sharing and commenting on visualizations.
Jeremiah Grossman will look back on what was discovered ? he?s collected as many of the new 2006 web hacks as could be found and narrowed the list to the Top 10
A Listing of the top 100 blogs on personal finance
XML