Taquiones Tipografía Roboto

En este artículo, aprenderemos cómo diseñar texto en Roboto usando el kit de herramientas Tachyons. El kit de herramientas Tachyons es gratuito y de código abierto y se utiliza para crear un sitio web receptivo.

Roboto es un estilo de fuente que se utiliza para diseñar el texto. Es una familia tipográfica sans-serif desarrollada por Google como fuente del sistema para su sistema operativo móvil Android.

Sintaxis:

<element-name class="roboto ">...</element-name>

Clases usadas:

  • Clase roboto: esta clase se utiliza para diseñar texto en Roboto.

Ejemplo 1: 

HTML

<!DOCTYPE html>
<html>
  
<head>
    <link rel="stylesheet" href=
"https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css" />
</head>
  
<body>
    <center>
        <h1 class="green">
            GeeksforGeeks
        </h1>
          
        <h3 class="roboto">
            A Computer Science Portal For Geeks
        </h3>
    </center>
</body>
  
</html>

Producción:

 

Ejemplo 2:

HTML

<!DOCTYPE html>
<html>
  
<head>
    <link rel="stylesheet" href=
"https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css" />
</head>
  
<body>
    <center>
        <h1 class="green">
            GeeksforGeeks
        </h1>
          
        <h3 class="roboto">
            A Computer Science Portal For Geeks
        </h3>
          
        <button class="roboto">GFG</button>
        <button class="roboto">Practice</button>
        <button class="roboto">Code</button>
    </center>
</body>
  
</html>

Producción:

 

Referencia: https://tachyons.io/docs/typography/font-family/roboto/

Publicación traducida automáticamente

Artículo escrito por pall58183 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *