Snippets

Here is your code snippet

Code


set text colour

set text colour

<html>
<head>

<style type="text/css">
h1 {color: blue}
h2 {color: #99FF66}
h3 {color: rgb(255,0,255)}
</style>

</head>

<body>
<h1>This is header 1</h1>
<h2>This is header 2</h2>
<h3>This is a paragraph</h3>
</body>
</html>