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 Abreviation se utiliza para definir la abreviatura o la forma abreviada de un elemento. La abreviatura se utiliza para proporcionar información útil a los navegadores, sistemas de traducción y motores de búsqueda.
Foundation CSS Base Tipografía Abreviatura Etiqueta:
- Etiqueta <abbr>: esta etiqueta se utiliza para definir la abreviatura o la forma abreviada de un elemento.
Sintaxis:
<abbr title=""> Content... </abbr>
Ejemplo 1: en este ejemplo, describiremos el uso de la abreviatura de tipografía base de CSS de Foundation.
HTML
<!DOCTYPE html> <html lang="en"> <head> <title> Foundation CSS Base Typography Abbreviations </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 Abbreviations </h2> <p style="padding-left: 20px;"> <abbr title="Hypertext Markup Language"> HTML</abbr> is a standard markup language used to design the documents that will be displayed in the browsers as a web-page. </p> <script> $(document).foundation(); </script> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, describiremos el uso de la abreviatura de tipografía base de CSS de Foundation.
HTML
<!DOCTYPE html> <html lang="en"> <head> <title> Foundation CSS Base Typography Abbreviations </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 Abbreviations </h2> <div class="callout success"> <h4><abbr title= "A Computer Science portal for geeks"> GeeksforGeeks</abbr> </h4> <p> A Computer Science portal for geeks. It contains well written, well thought and well-explained computer science and programming articles... </p> <hr> <h4><abbr title="HyperText Markup Language"> HTML</abbr> </h4> <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> <hr> <h4><abbr title="Scripting Language"> JavaScript</abbr> </h4> <p> JavaScript is the world most popular lightweight, interpreted compiled programming language. It is also known as scripting language for web pages. </p> </div> </body> </html>
Producción:
Referencia: https://get.foundation/sites/docs/typography-base.html#abbreviations
Publicación traducida automáticamente
Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA