html-base-tag-in-hindi

Introduction to HTML <base> Tag HTML <base> tag द्वारा किसी HTML document के सभी URLs के लिए base URL specify किया जाता है। इसके बाद आपको पूरा URL लिखने के लिए आवश्यकता नहीं होती है। जब भी आप कोई URL add करते है तो base URL उस URL से पहले automatically prefix कर दिया जाता है। उदाहरण … Read more

html-br-tag-in-hindi

Introduction to HTML <br> Tag HTML में <br> tag को किसी text या paragraph में line को break करने के लिए use किया जाता है। ये tag उन situations के लिए महत्वपूर्ण है जिनमें line break का महत्व होता है। उदाहरण के लिए कोई poem या address लिखते समय text line को break करने के … Read more

html-in-hindi

Introduction to HTML <!DOCTYPE> HTML में <!DOCTYPE> कोई tag नहीं है। इसे document type declaration कहा जाता है। जैसा की आप इसके नाम से अंदाजा लगा सकते है, यह document के type के बारे में जानकारी provide करता है। यह जानकारी interpreter को webpage को बेहतर organize करने में मदद करती है। एक <!DOCTYPE> declaration किसी HTML document … Read more

html-hr-tag-in-hindi

Introduction to HTML <hr> Tag HTML में <hr> tag thematic break (विषय अंतराल) को दर्शाने के लिए use किया जाता है। यह tag एक horizontal line generate करता है जिसे अलग अलग विषयों को separate करने के लिए use किया जा सकता है। इसे HTML में horizontal rule भी कहा जाता है। HTML5 में <hr> tag … Read more

html-meta-tag-in-hindi

Introduction to HTML <meta> Tag <meta> tag द्वारा meta-data को represent किया जाता है। Meta-data का मतलब data के बारे में data होता है। अगर आसान शब्दों में कहें तो <meta> tag HTML document के बारे में information provide करता है। <meta> tag का content web page में display नहीं होता है। Meta-data browsers और search … Read more

html-address-tag-in-hindi

Introduction to HTML <address> Tag HTML <address> tag किसी document के author या owner की contact information define करने के लिए use किया जाता है। <address> tag को HTML3 में add किया गया था। HTML3 के बाद के सभी versions में यह tag available है। इसे HTML5 में भी include किया गया है। कई बार web developers <address> tag … Read more

html-script-tag-in-hindi

Introduction to HTML <script> Tag HTML का <script> tag web pages में client side script define करने के लिए use किया जाता है। उदाहरण के लिए <script> tag के माध्यम से आप अपने HTML document में JavaScript add कर सकते है। JavaScript एक client side scripting language है। इसकी मदद से आप dynamic content generate कर सकते है और forms … Read more

html-font-tag-in-hindi

Introduction to HTML Font Tag अपनी website के fonts को configure करके आप उसे और भी attractive, readable और structured बना सकते है। By default आपकी website की font family कुछ भी हो सकती है। लेकिन इसे आप अपनी website के हिसाब से configure करके कोई दूसरी font family भी यूज़ कर सकते है। साथ ही … Read more

html-forms-in-hindi

Introduction to HTML Forms किसी भी webpage पर यदि आप यूज़र से कोई information लेना चाहते है तो इसके लिए आप forms का इस्तेमाल करते है। उदाहरण के लिए जब भी आप कोई नयी email id create करते है तो सबसे पहले sign up form भरते है। ऐसा करके आप अपनी information webpage के द्वारा … Read more

html-blocks-in-hindi

Introduction to HTML Blocks HTML में block level और inline 2 तरह के tags होते है। जब भी block level tags webpage में show होते है तो automatically इनके पहले और बाद में एक line का space होता है। कुछ common block level tags के बारे में नीचे दिया जा रहा है। div p h1 दूसरे … Read more