Cuenta en https://github.com

Descarga `git`

sudo apt-get install git

Creando un repositorio para la web

+

New repository

Nombre: prueba; marca "crear README", resto nada

Generemos la web automáticamente

Settings → Automatic page generator

Configuremos la página

Marca "Load README.md" → Selecciona layoutPublish Page

Descargamos localmente página generada

git clone https://github.com/minick/mi1web.git

Creamos espacio personal estilo jj.github.io

+

New repository

Nombre: minick.github.io; no marcar nada

git checkout gh-pages
git push https://github.com/minick/minick.github.io.git gh-pages:master

Comprobar en GitHub

Comprobar en minick.github.io

Desarrollador → Consola web

HTML es un lenguaje de descripción de estructura de un documento

html

head + body

Editemos index.html desde la web

Elementos HTML entre < y >

Cada elemento <h1> su antielemento </h1>

Nudos del árbol

Elementos tienen atributos

→ Datos adicionales

Añadamos títulos con h1

Añadamos enlace a nuestro perfil en github

Mi perfil en GitHub

Guardar con mensaje "Añade enlaces"

Tu primera web está lista