HTML tags in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The <html> tag tells the browser this is an HTML document.
The <html> tag represents the root of an HTML document.
The <html> tag is the container for all other HTML elements (except the <! DOCTYPE> tag).
How to use the html . tag
Example : Use html tag to declare html document.
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại web888</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại web888.vn</h1> <hr> <p> Freetuts.net là một blog cá nhân được xây dựng với mục đích chia sẻ kiến thức về lập trình web nói chung và lập trình nói riêng. </p> </body> </html>
Attribute of the html . tag
The html tag is given all the Global Attributes in HTML.