Financial Calculator

Financial Calculator

Take control of your finances with our powerful Financial Calculator app—calculate loans, SIP, PPF, NPS and more all in one place!

Play Store
Financial Calculator

Financial Calculator

Take control of your finances with our powerful Financial Calculator app—calculate loans, SIP, PPF, NPS and more all in one place!

Play Store

Financial Calculator

Calculate loans, SIP, PPF, NPS & more!

Financial Calculator

Calculate loans, SIP, PPF, NPS & more!

HTML Introduction

HyperText Markup Language या HTML वेब पेज बनाने के लिए standard markup language है।

HTML क्या है?

  • HTML का मतलब HyperText Markup Language है
  • HTML वेब पेज बनाने के लिए standard markup language है।
  • HTML एक वेब पेज की structure का वर्णन करता है।
  • HTML वेब ब्राउज़र में प्रदर्शित होने के लिए content की डिज़ाइन को बताता हैं।

HTML Document Demo

HTML Demo
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>This is Title</title>
</head>

<body>
    <h1>This is My First Heading</h1>
    <p>This is My first paragraph.</p>
</body>

</html>

उद्धारण को समझते हैं

  • <!DOCTYPE html> घोषणा परिभाषित करती है कि यह document एक HTML5 document है।
  • <html> element एक root element है HTML पेज का।
  • <head> element में HTML पेज के बारे में meta information होती है।
  • <title> element एक HTML पेज के लिए एक शीर्षक (title) निर्दिष्ट करता है (जो ब्राउज़र के title bar में दिखाया जाता है)।
  • <body> element document के मुख्य भाग को परिभाषित करता है, और सभी visible contents, जैसे headings, paragraphs, images, hyperlinks, tables, lists आदि के लिए एक कंटेनर है।
  • <h1> element एक बड़े शीर्षक (heading) को परिभाषित करता है।
  • <p> element एक paragraph को परिभाषित करता है।
  • <img> element एक image को परिभाषित करता है।

एक HTML Element क्या है?

एक HTML element को एक start tag, some content और एक end tag द्वारा परिभाषित किया गया है:

<tagname>Any Content</tagname>

HTML element start tag से end tag तक सब कुछ है जैसे की <tagname> Any Content </tagname>

Start Tag Element Content End Tag
<h1> This is My First Heading </h1>
<p> This is My first paragraph </p>
<br> none none
नोट: कुछ HTML elements में कोई content नहीं होती है (जैसे <br> element)। इन element को empty elements कहा जाता है। empty elements का कोई end टैग नहीं होता!

HTML Page Structure

नीचे HTML पेज संरचना का एक ढांचा है:

HTML Introduction

HTML History

Year Version
1989 Tim Berners-Lee invented www
1991 Tim Berners-Lee invented HTML
1993 Dave Raggett drafted HTML+
1995 HTML Working Group defined HTML 2.0
1997 W3C Recommendation: HTML 3.2
1999 W3C Recommendation: HTML 4.01
2000 W3C Recommendation: XHTML 1.0
2008 WHATWG HTML5 First Public Draft
2012 WHATWG HTML5 Living Standard
2014 W3C Recommendation: HTML5
2016 W3C Candidate Recommendation: HTML 5.1
2017 W3C Recommendation: HTML5.1 2nd Edition
2017 W3C Recommendation: HTML5.2
Article By: Nilesh
Created on: 08 Aug 2023  1444  Views
 Print Article
Report Error

If you want to report an error, or any suggestion please send us an email to [email protected]

Financial Calculator

Financial Calculator

Take control of your finances with our powerful Financial Calculator app—calculate loans, SIP, PPF, NPS and more all in one place!

Play Store