- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Include information about the document in HTML
Use the <head> tag to include information about the document. The HTML <head> tag is used for indicating the head section of the HTML document. Tags included inside head tags are not displayed in the browser window.
Example
You can try to run the following code to include information about the document in HTML −
<!DOCTYPE html> <html> <head> <title>HTML head Tag</title> </head> <body> This is demo text. </body> </html>
- Related Articles
- How to include Modernizr in HTML document?
- Include meta data in an HTML document
- How do we include a section in an HTML document?
- What are the ways to include style sheet rules in an HTML document
- Execute a script when the document is about to be unloaded in HTML?
- How do we add extra information about an element in HTML?
- Include keyboard text in HTML
- Include a header for a document or section in HTML5?
- How to include the character encoding in HTML?
- Create HTML Document with Custom URL for the document in JavaScript
- How to include the audio/video controls in HTML?
- How to include an acronym in HTML?
- How to include an abbreviation in HTML?
- How to include JavaScript in HTML Documents?
- How to include CSS in HTML Pages

Advertisements