/* ////////////////////////////////////////////////////////////// // First.css - demonstrate setting presentation formats // // with Cascading Styles // // // // Jim Fawcett, CSE686 - Internet Programming, Spring 2006 // ////////////////////////////////////////////////////////////// */ /* styling html elements */ body { margin: 50px 100px 50px 100px; } /* top, right, bottom, left */ body { color: #993333; background: #eeeeee; } /* RGB in hex */ body { font-family: tahoma, sans-serif; font-size: large; } li { padding: 5px; padding-left: 10px; padding-right: 10px; } /* defining style classes, applied to any element */ .title { text-align: center; } .emp { font-weight: bold; text-decoration: underline; }