HTML, or HyperText Markup Language, is the standard language used for creating and structuring content on the web. It's used to define the structure and layout of a webpage's content using a system of tags.
HTML अथवा HyperText Markup Language एउटा यस्तो मार्कअप Language को जसले विभिन्न किसिमका वेवसाइट निर्माण गर्न मद्धत गर्दछ । यसमा विभिन्न प्रकारका Tag हरु प्रयोग गरिएको हुन्छ ।
HTML Tag प्रयोग गरिएको उदाहरण निम्नानुसार छ ।
<html>
<head>
<title>My First HTML Page</title>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<p>This is a simple paragraph of text.</p>
<b> To make bold text </b>
<a href="https://www.psc.gob.np">Visit PSC Website</a>
<img src="image.jpg">
<i> This is to make italic text </i>
</body>
</html>