HTML
HTML (HyperText Markup Language) is a standard markup language used to creat web pages. It is the foundation of most websites and is used to structure and format the content of a web page, including text, images, and other media.
HTML is a very simple language that consists of a set of tags enclosed in angle brackets. These tags tell the web browser how to format and display the content of a web page.
Here is a simple example of an HTML document:
<html>
<head>
<title>My blog Page</title>
</head>
<body>
<h1>Welcome to my blog</h1>
</body>
</html>
In this example, the html element is the root element of the HTML document and it contains the 'head' and 'body' elements. The 'head' element contains information about the document, such as the title, and the 'body' element contains the content of the document.
Comments
Post a Comment