--- title: Recommended minimum HTML head shortTitle: HTML head template type: story tags: [webdev,html,browser] author: chalarangelo cover: boutique-home-office-1 excerpt: Ensure your HTML documents are properly structured by including these lines in your `
` element. dateModified: 2023-01-18T05:00:00-04:00 --- An essential part of an HTML document is the `` element, which contains metadata about the document. Some vital information, such as the document's title and character encoding are stored in the `` element. It's also where you can include links to external resources such as CSS stylesheets and JavaScript files. More often than not, this sort of metadata can grow in complexity with time. However, there are a few important things that should never be omitted. Here's a list of the bare minimum you should include in your `` element: ```html