Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/08/2018, 13:47
Bier
 
Fecha de Ingreso: enero-2002
Mensajes: 1.174
Antigüedad: 22 años, 3 meses
Puntos: 21
¿Porque se aplica este FONT?

Estaba aplicando https://fonts.google.com/ y sin necesidad de incluir el link, veo que se muestra el Texto con la Fuente

<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">

Se puede ver la ejecución de este en:
https://www.w3schools.com/code/tryit...e=FUSCMRBEHJLK

Código HTML:
Ver original
  1.   <style type="text/css">
  2.     body {
  3.         font-family: 'Indie Flower', cursive;
  4.     }
  5.   </style>    
  6. </head>
  7.     <h1>Plantilla Base Bootrap</h1>
  8.     <p class="h1">ABC DBE HWQ XYZ Texto abc</p>
  9. </body>
  10. </html>

¿Porqué no hay necesidad de incluir la Fuente?

Gracias