Want to create interactive content? It’s easy in Genially!
Get started free
LENGUAJE HTML
PEREZ BARRAGAN DULCE MARIA
Created on March 26, 2025
Start designing with a free template
Discover more than 1500 professional designs like these:
Transcript
La validación HTML consiste en comprobar si el código fuente de un sitio web cumple con ciertos estándares. Los errores suelen resaltarse para que el propietario pueda corregirlos antes de volver a realizar pruebas. No es lo mismo que la validación de contenido.
- https://www.w3schools.com/html/html_links.asphttps://www.w3schools.com/html/html_links.asp
- https://developer.mozilla.org/es/docs/Learn_web_development/Core/Structuring_content/HTML_images
- https://www.vadavo.com/blog/html-que-es-y-para-que-sirve/#elementor-toc__heading-anchor-4
FUENTES:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Mi primera página</title> </head> <body> <h1>¡Bienvenido a mi sitio web!</h1> <p>Este es un párrafo de ejemplo.</p> </body> </html>