En este artículo, aprenderemos cómo especificar la ubicación del documento vinculado en HTML5. Esto se puede hacer usando un atributo href en el elemento <link>. Esto tiene varios usos. Más comúnmente se usa para vincular hojas de estilo o favicons al documento.
Sintaxis:
<link rel="stylesheet" type="text/css" href="style.css">
Los siguientes ejemplos ilustran el uso del atributo href .
Ejemplo 1: en este ejemplo, la ubicación de una hoja de estilo externa se especifica mediante el atributo href.
HTML
<html> <head> <!-- Bootstrap CSS from CDN --> <link rel="stylesheet" href= "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <!-- Custom styling --> <style> h1 { color: green; } h1, h2 { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> How to specify the location of the linked document in HTML5? </h2> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, la etiqueta <a> se usa para vincular el documento usando el atributo href.
HTML
<html> <head> <style> h1 { color: green; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> How to specify the location of the linked document in HTML5? </h2> <a href="https://ide.geeksforgeeks.org/"> Click to open in the same tab </a> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA