  So today, July 17, 2004 I'm going to learn CSS so that I can effectively use it for the Conjoint Analysis website. First things first: To use CSS, you can set the global styles: &lt;style type=&quot;text/css&quot;&gt; border-color: red; border-style: inset; border-width: 5px &lt;/style&gt; You can set the setting for a specific type of tag: &lt;style type=&quot;text/css&quot;&gt; p { border-color: red; border-style: inset; border-width: 5px } &lt;/style&gt; 
