HTML paragraph element in hindi

HTML P element के बारे में| हेलो दोस्तों इस पोस्ट में हम जानेगे की HTML document में paragraphs कैसे set करते है| HTML document में, paragraph text के block को पहचानने के लिए <p> element का उपयोग किया जाता है। paragraph element के <p>opening tag और </p> closing tag दोनों होते है| P element basic […]

Read More

HTML paragraph element in hindi

Read More »

HTML headings in hindi

html heading

HTML Headings हेलो दोस्तों इस पोस्ट में हम जानेगे की HTML में heading कैसे create करते है| Heading Element अपनी Website में heading सेट करने के लिए उपयोग किया जाता है | HTML heading tag <h1> to <h6> tag का उपयोग करके अपनी webisite में Heading set कर सकते है| HTML heading <h1> tag के text

Read More

HTML headings in hindi

Read More »

HTML Elements in hindi

HTML Elements दोस्तों आज हम इस Post में HTML के Elements के बारे जानेगे, HTML element tag को हम <> angle brackets में लिख सकते है| तो हम जानगे की Elements क्या होते है और Elements किसे कहते है|HTML syntax में, खाश करके element को opening tag और closing tag के साथ लिखा जाता है,

Read More

HTML Elements in hindi

Read More »

Basic structure of an HTML document in hindi

HTML Document Structure तो दोस्तों इस पोस्ट में हम जानेगे HTML Document structure के बारे में सामान्य तर में हम अपने Phone, Laptop में किसी बी Website open करते है| तो सभी Website का layout अलग अलग होता है | तो इन सभी Website का जो layout होता है वह HTML के strucute पे आधारित

Read More

Basic structure of an HTML document in hindi

Read More »

What are the attributes in HTML? HTML में attributes किसे कहते है?

HTML Attributs in hindi HTML के सभी Element में  attributes होते ही है,वह attributes Element  में addinational information बताते है|HTML, Element  के <opening> tag ,</closing> tag होते है तो हम इन attributes को <opening> tag में लिखते है|attributes को elements में बताने के लिए उसका   basic syntax (Name = “value”)  कुछ इस तरह होता है|

Read More

What are the attributes in HTML? HTML में attributes किसे कहते है?

Read More »

Introduction html in hindi

Introduction about HTML In Hindi हेलो दोस्तों आज हम इस पोस्ट में HTML के बारे में जानेगे की HTML कैसे काम करती है HTML से webpages कैसे बनाया जाता है। किसी बी website/webapplication बनाने में HTML का इस्तेमाल होता ही तो हम लोग one by one HTML के सरे elements उसके tags,attribute के बारे में

Read More

Introduction html in hindi

Read More »

php switch statement example

switch statement, if statement की तरह एक conditional statement है जिसका condition के आधार पर अलग-अलग action perform करने के लिए इतेमाल किया जाता है|switch statement और if statement में काफी similiraty है लेकिन इन दोनों statement में just यह different है की switch statement में directly अपने expression statement पे jump करता है जब

Read More

php switch statement example

Read More »

php strings

php strings Strings character का sequence यानि की समूह (group) है|| string declaration string तीन तरीके से declare कर सकते है|| single quoted double quoted doc syntax nowdoc => यह single quoted की तरह काम करता है|| heredoc => यह double quoted की तरह काम करता है|| Single quoted single quoted में, string को single

Read More

php strings

Read More »

PHP loops introduction

Types of loops in php while loop while loop में code का block तब-तक execute होगा जब-तक while loop में दी गई condition true होती है| while statement में condition true है तब-तक ही code execute होगा अगर while statement की condition false होगी तो while statement का code execution बंद हो जायेगा. While loop

Read More

PHP loops introduction

Read More »

php conditional statements

if statement इस statement में code तभी execute होगा जब if statement की condition True होगी| if statement एक conditional statement है जिसमे कई प्रकार की condition check करि जाती है|| if statement में अगर condition true होती है तभी वह if statement की body statement (code) execute होगा otherwise नहीं होगा. syntax: Example: ऊपर

Read More

php conditional statements

Read More »