No te he entendido muy bien, pero me imagino que querrás algo así:
Código Javascript
:
Ver original<html>
<head>
<style>
h1 {color: red;
font-family: lucida sans;
}
#n{color:blue;
font-family: times new roman;
}
</style>
</head>
<body>
<h1> titulo 1</h1>
<h1 id="n"> titulo 3</h1>
</body>
</html>