what is HTML in hindi (HTML क्या है)

HTML क्या है और कैसे काम करता है

Introduction HTML in hindi
definiton in HTML in hindi
examle in HTML in hindi


Introduction HTML(Hypertext markup language)

HTML का full form Hypertext markup language है website को तो सब को बनाने की इच्छा होती होगी लेकिन जब बात आती है तो बहुत ही मुश्किल लगता होगा अगर आप को एक website develop करना है तो आप को HTML आना चाहिए।

  यह एक compute  language है जो एक web development के लिए use किया जाता है  जिसमे हम कोई एक website को formate देने के लिए use किया जाता है . HTML  information को word wide web में present करने का माध्यम है HTML को berners lee द्वारा 1991 ँमें creat की गई थी. HTML word wide web जो (W3C) द्वारा manage की जाती है.


Hyper

Hyper का मतलब होता है की html sequence में नहीं होती है. जैसे किसी programming model में होता है एक statement के   अगला statement execute होगा यदि किसी HTML फाइल में link है और user उसपे press करता है तो वह execute हो जाता है सभी html फाइल independent होती है.

Text (information )

कोई भी webpage Text (information )  से बना होता है किसी भी webpage में बहुत ही important होता है.


markup का मतलब होता है text  formattingहोता है   किसी text को कोई style में change करना चाहते है तो tag का  use होता है  जिस  आप tag को mark करते है ओ  उसी तरह आप के webpage में show होता है.

Language

HTML एक language है जो web develop के लिए  use होता है


HTML Versions









Basic Tags

<HTML> </HTML>   

किसी भी html file  की शुरुआत इसी tag से किया जाता है इसी tag  से पता चलता है की ये एक html फाइल है और बाकि सब इसी tag के अंदर होता है इस tag को लास्ट में close किया जाता है.

<head ></head >

इस टैग के अंदर document के बारे में information होती है यदि आप का web page कोई script apply करता है तो ओ सब head के अंदर आ जाते है और यर हमेसा html के निचे होता है और html के बाद close होता है.

<title ></title >

इस tag के द्वारा webpage का title display किया जाता है यह tag head के अंदर होता है.

<body ></body >

जो भी text body के अंदर होती है ओ program के interpret होने के बाद वही display होती है ये हमेसा html close होने के बाद close होता है. 

Example

<!DOCTYPE html>
<html>
      <head>
         <title>This is Page Title</title>
      </head>
       <body>
           <h1>My First heading </h1>
           <p>Hello world! This is my first Page</p>
      </body>
</html>

Popular

Blogger द्वारा संचालित