What is HTML? Write a html programs using different tags. [1+4]

0
GK SIR
Aug 23, 2023 05:59 PM 0 Answers Web Page Designing
Member Since Dec 2016
Subscribed Subscribe Not subscribe
Flag(0)

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>

1 Subscribers
Submit Answer
Please login to submit answer.
0 Answers
Sort By:

Leave a Reply

Your email address will not be published. Required fields are marked *

*