Foundation CSS es un marco front-end receptivo y de código abierto creado por la fundación ZURB en septiembre de 2011, que facilita el diseño de hermosos sitios web, aplicaciones y correos electrónicos receptivos para que se vean increíbles y puedan ser accesibles para cualquier dispositivo. Es utilizado por muchas empresas como Facebook, eBay, Mozilla, Adobe e incluso Disney. El marco se basa en un arranque similar a Saas. Es más sofisticado, flexible y fácilmente personalizable. También viene con CLI, por lo que es fácil de usar con paquetes de módulos. Ofrece la herramienta Fastclick.js para una renderización más rápida en dispositivos móviles.
Foundation CSS Base Typography se usa para agregar los estilos predeterminados para hacer que los elementos sean más atractivos. La tipografía base facilita la vida al proporcionar elementos y clases simples y atractivos para construir una página web atractiva.
Foundation CSS Base Typography Link se utiliza para agregar conexiones de un recurso web a otro. El enlace de tipografía base se usa para agregar el color primario de la base para hacer el enlace estándar.
Fundación CSS Base Tipografía Enlace Etiqueta:
- Etiqueta <a>: esta etiqueta se utiliza para crear enlaces y agregar colores primarios en Foundation CSS.
Sintaxis:
<a href=""> Content... </a>
Ejemplo 1: En este ejemplo, describiremos el uso de Foundation CSS Base Typography Link.
HTML
<!DOCTYPE html> <html lang="en"> <head> <title> Foundation CSS Base Typography Links </title> <!-- Compressed CSS --> <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/css/foundation.min.css"> <!-- Compressed JavaScript --> <script src= "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"> </script> <script src= "https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/js/foundation.min.js"> </script> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> Foundation CSS Base Typography Links </h2> Welcome to <a href="https://www.geeksforgeeks.org/"> GeeksforGeeks </a> <script> $(document).foundation(); </script> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, describiremos el uso de Foundation CSS Base Typography Link.
HTML
<!DOCTYPE html> <html lang="en"> <head> <title> Foundation CSS Base Typography Links </title> <!-- Compressed CSS --> <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/css/foundation.min.css"> <!-- Compressed JavaScript --> <script src= "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"> </script> <script src= "https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/js/foundation.min.js"> </script> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> Foundation CSS Base Typography Links </h2> <div class="callout success"> <h1><a href="https://www.geeksforgeeks.org/"> GeeksforGeeks </a></h1> <p> A Computer Science portal for geeks. It contains well written, well thought and well-explained computer science and programming articles... </p> <h3><a href="https://www.geeksforgeeks.org/html/"> HTML </a></h3> <p> HTML stands for HyperText Markup Language. It is used to design web pages using a markup language. It is the combination of Hypertext and Markup language. </p> <h5><a href="https://www.geeksforgeeks.org/javascript/"> JavaScript </a></h5> <p> JavaScript is the world most popular lightweight, interpreted compiled programming language. It is also known as scripting language for web pages. </p> </div> <script> $(document).foundation(); </script> </body> </html>
Producción:
Referencia: https://get.foundation/sites/docs/typography-base.html#links
Publicación traducida automáticamente
Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA