Welcome 🎉

logo

ReactLMS

Search
Light Mode
Contact Us

2 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Concept


<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.


Usage


This is the syntax of <html> tag:

<html>
    <!-- Nội dung trang web -->
</html>







Position of the tag


<html> tag is usually placed at the beginning of an HTML document. It is the parent tag of all other tags in the webpage.


Important child tags


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>








Read more
On This Page