typestar

Semántica en línea en HTML

Elementos en línea que llevan significado: énfasis, importancia, código y abreviaturas.

<p>
  Press <kbd>Tab</kbd> to accept the hint, then run
  <code>npm test</code> before you commit. This is
  <strong>required</strong> -- the hook will reject the push otherwise.
  An <abbr title="Abstract Syntax Tree">AST</abbr> is parsed first,
  which is <em>usually</em> the slow part.
</p>

Cómo funciona

  1. em es énfasis, strong es importancia — ambos le ganan a i y b.
  2. code marca texto fuente, kbd marca lo que el usuario presiona.
  3. abbr ofrece una expansión que el lector ve al pasar el cursor.

El intento, en números

Líneas
7
Caracteres a escribir
284
Tokens
58
Ritmo de tres estrellas
60 tpm

Al ritmo de tres estrellas de 60 tokens por minuto, este intento toma unos 58 segundos.

Escribe este fragmento

Paso 3 de 7 en Texto y encabezados; paso 6 de 28 en Estructura del documento.

← Anterior Siguiente →