CÓDIGO HTML BÁSICO - MARIAEL/NOCIONES-VARIAS-DEL-CURSO-CONFECCION-WEB GitHub Wiki
Escribimos Hola Mundo
Ctrl s para guardar.
Indicarle que es HTML5 poniendo en la primera linea
Ahora ponemos las etiquetas de html escribiendo html tabulador
< html > < / html >
Entre estas etiquetas pondremos
< head > < / head >
< body > < / body >
De manera abreviada podemos pulsar ( ! TAB ) y nos genera el código básico en html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>
Para crear un comentario en html pulsar estas teclas a la vez
Ctrl MAY Ç
<!-- -->