xxxxxxxxxx
<html lang="en">
<head>
<meta charset="utf-8">
<title>Specify Colors in CSS using Hexadecimal Notation</title>
<style>
h1 {
color: #ffa500;
}
p {
color: #00ff00;
}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>