HTML CSS examples for HTML:Document
The metadata an HTML document provide information about your document to the browser.
The metadata is contained inside a head element.
<!DOCTYPE HTML> <html> <head> <!-- metadata goes here --> <title>Example</title> </head> </html>
<!-- and end with --> marks the comments of HTML. The browser will ignore anything between them.