
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create Valid HTML Document Without Head Element
With HTML, the essentials are doctype declaration, <html><head> and </body>. But, you will be amazed to know that a valid HTML document can work without the <head> element. The doctype declaration<!DOCTYPE html> will come always since it tells and instructs the browser about what the page is about.
Let’s see an example; here we won’t use the <head> tag. Still, the HTML Document is valid and will work correctly like any other valid HTML Document
Example
<!DOCTYPE html> <html> <title>Title of the document</title> <body> <h1>This is heading 1</h1> <p>This is demo text.</p> </body> </html>
Advertisements