HTML là viết tắt của HyperText Markup Language, là ngôn ngữ đánh dấu siêu văn bản được sử dụng để tạo và cấu trúc các trang web.
With HTML, we can build a basic structure for a web page, helping us implement the entire application on the browser accurately.
HTML files will have the extension html, for example: index.html
Cấu trúc cơ bản của một trang HTML như sau:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
//Code giao diện ở đây.
</body>
</html>
The above structure is explained as follows: