Friday, June 3, 2011

Using simple color in CSS3

example:
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
background-color:rgb(33.3%,33.3%,33.3%);
}
h1 {
background-color:rgb(45%,45%,45%);
color:rgb(100%,100%,100%);
}
</style>
<meta charset="UTF-8">
<title>CSS Color</title>
</head>
<body>
<h1>CSS Color</h1>
http://icancode-4-web.blogspot.com/

</body>
</html>


Using simple color in CSS3

No comments:

Post a Comment