Friday, 9 August 2013

HTML style Tag

Introduction:

The HTML <style> tag is used for declaring style sheets within the head of your HTML document.

Example:
<html>
<head>
<title>HTML style Tag</title>
<style type="text/css">
  h1 { color:#000099 }
</style>
</head>
<body>
<h1>Hello</h1>
</body>
</html>

No comments:

Post a Comment