Home > Article > Web Front-end > Add header to document or section in HTML5?
Add headers using the
You can try running the following code to include the header of the document -
<!DOCTYPE html> <html> <head> <title>HTML Header Tag</title> </head> <body> <header> <h1>Simply Easy Learning</h1> <p>You're visiting tutorialspoint.com - tutorial hub for simply easy learning.</p> </header> </body> </html>
The above is the detailed content of Add header to document or section in HTML5?. For more information, please follow other related articles on the PHP Chinese website!