Pages

Thursday, April 15, 2010

Workshop 5: Example with CSS

ITC594 Study Guide A2005
Example with CSS
<html>
<head>
<style type="text/css">
body
{
background-color:#d0e4fe;
}
h1
{
color:orange;
text-align:center;
}
p
{
font-family:"Times New Roman";
font-size:20px;
}
</style>
</head>

<body>

<h1>CSS example!</h1>
<p>ITC594-E-systems Infrastructure Development.</p>

</body>
</html>



The Output of this Example with CSS:
          In the first example you can see the HTML code without CSS. CSS can enable appearance and site layout of the pages. In the second example you can find the differences.

2 comments:

  1. Wow now its look good with CSS!!!Nice explaination!!!

    ReplyDelete
  2. Nice to see the examples with CSS ! !
    It's much pretty than the one without CSS

    ReplyDelete