Surf 11 » Archives for February, 2007

Finding the best waves on the web.

Using CSS in HTML HEAD

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.



How to restart ColdFusion from the command prompt in Unix

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's Many Eyes Visualization Project

IBM today announced Many Eyes, a site for sharing and commenting on visualizations.

Link: IBM's Many Eyes Visualization Project



Top 10 Web Application Vulnerabilities of 2006

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

Link: Top 10 Web Application Vulnerabilities of 2006



100 Blogs about Personal Finance

A Listing of the top 100 blogs on personal finance

Link: 100 Blogs about Personal Finance



Subscribe to our RSS Feed: subscribe to this feed XML
Archives   Tags   Contact