<html> tag is an important tag in HTML, it marks the beginning of an HTML document. All components of your website will be placed inside this tag.
This is the syntax of <html> tag:
<html>
<!-- Nội dung trang web -->
</html>
<html> tag is usually placed at the beginning of an HTML document. It is the parent tag of all other tags in the webpage.
Below are some important child tags of <html> tag:
Here is an example of using <html> tag in an HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Trang web của tôi</title>
</head>
<body>
<h1>Xin chào!</h1>
<p>Đây là nội dung chính của trang web.</p>
</body>
</html>