Buenas, estoy aprendiendo HTML y me surgen un par de problemas al hacer unas pruebas.
Quiero trabajar con utilizando id para poner distintas fuentes de letra en distintos párrafos.
Os dejo el código que he hecho debajo. Si no utilizo id funciona perfectamente, pero no se que ocurre al utilizar id, he intentado informarme y no he conseguido llegar a la solución.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Fuentes</title>
<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
<style type="text/css">
#google p {
font-family: 'Shadows Into Light', cursive;
}
</style>
</head>
<body>
<p id="google">Párrafo con fuente de Google Fonts (Shadows Into Light).</p>
</body>
</html>