Sunday, April 7, 2013

HTML Style

The HTML <style> Element
T he <style> tag is used to define to style information for an html document.
Inside the <style> element you specify how html elements should render in a browser:
Example:
<head>
<style type="text/css">
body {background-color:yellow}
p {color:blue}
</style>
</head>

No comments: