Skip to content

Instantly share code, notes, and snippets.

@nicolasleal570
Created September 21, 2020 21:23
Show Gist options
  • Save nicolasleal570/ac217908b390a68155d7ec350e61cd68 to your computer and use it in GitHub Desktop.
Save nicolasleal570/ac217908b390a68155d7ec350e61cd68 to your computer and use it in GitHub Desktop.
Etiquetas básicas para la creación de textos
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Explicación de los Distintos Tipos de Textos</title>
</head>
<body>
<h1>Soy un Encabezado 1</h1>
<h2>Soy un Encabezado 2</h2>
<h3>Soy un Encabezado 3</h3>
<h4>Soy un Encabezado 4</h4>
<h5>Soy un Encabezado 5</h5>
<h6>Soy un Encabezado 6</h6>
<p>Soy un párrafo</p>
<a href="https://google.com">Soy un Link para ir a Google</a>
<p>
Soy un párrafo pero voy a formatearme utilizando
<strong>Negritas</strong>, <em>Cursiva</em>, <u>Subrayado</u> o
<span style="color: #f00f0f">un color rojo</span>
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment