HTML 1
HTML 1
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
Don't worry if we use tags you have not learned about yet.
HTML Documents
All HTML documents must start with a document type declaration: <!DOCTYPE html> .
The HTML document itself begins with <html> and ends with </html> .
The visible part of the HTML document is between <body> and </body> .
Example
<!DOCTYPE html>
<html>
<body>
</body>
</html>
Try it Yourself »
https://www.w3schools.com/html/html_basic.asp 1/10