Experiment 1

A Useful Class Code from JW that started it all)
Example that started it all.
.red-list is a class
ul is an html element
color:red is the color style


This is the code:
============
.red-list ul {
	color:red;
	}
============

This is the result
  • one
  • two
  • three
\

A styled Horizontal Rule using inline coding

This is the Code With GT-LT Tags instead of curly brackets

{hr style="height:1px; border:none; color:#000; background-color:#000; width:100%; text-align:center; margin: 20 auto;"}
A styled Horizontal Rule with Class .horiz-look
Second Example with additional coding
This is the Code
hr .horiz-look
{
height:2px; border:none; 	color:ff0000; width:50%; 	text-align:center; margin: 20 auto;
}  


A styled Horizontal Rule with Class .horiz-look