This post shows off the new Syntax Highlighter I added to the blog.
Javascript
1 2 3 | function demo() { alert('This is a javascript example); } |
CSS
1 2 3 4 | .class { font-size : 1em ; padding : 10px ; } |
C#
1 2 3 4 5 | public class Demo { public void Demo() { Response.Write( "This is a C# example." ); } } |