HTML


1-.CABECERA


<!doctype html> 
<html> 

<head> 
<title> Mi Website </title> 
</head> 


<h1> HTML para novatos</h1> 
<p> codigos básicos  HTML </p> 


</html>
________________________________________________________________________________

2.- CABECERAS MULTIPLES



<!doctype html>
<html>
<head>
<title> Mi Website </title>
</head>
<body>
<h1> esta es mi 1"°cabecera </h1>
<h2> esta es mi 2°cabecera </h2>
<h3> está es mi 3°cabecera </h3>
<h4> está es mi 4°cabecera </h4>
<h5> está es mi 5°cabecera </h5>
</body>

</html >


___________________________________________________________

3.-CAMBIAR COLOR AL TEXTO


<!doctype html>
<html>
<head>
<title> Mi Website </title>
</head>
<body text="red">
<h1> HTML para novatos </h1>
<p> codigos básicos HTML 

 </p>
</body>
</html> 

Contacto