Monday, November 3, 2025

HTML என்றால் என்ன?

 HTML - Hyper Text Markup Language


HTML stands for Hyper Text Markup Language, and it is the most widely used language to write Web pages.
Originally, HTML was develop with the intent of structure of documents like headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information researchers.

The Basic Structure of HTML Document

<html>
<head>
<title>---------------</title>
</head>
<body>--------------</body>
</html>
 

  • <html> - The main container for Html pages    
  • <head> - The container for page header information
  • <title>   - The title of the pages
  • <head> - The main body of the pages
Coding
Out put

No comments:

Post a Comment