Skip to main content

Posts

महाराजा खेतसिंह खंगार - महान योद्धा

 महाराजा खेतसिंह खंगार: राजपूतों के प्रथम 'सिंह' महाराजा खेतसिंह खंगार (कुँवर खेता) भारतीय इतिहास के एक ऐसे प्रतापी योद्धा थे, जिनकी वीरता और साहस की कहानियाँ आज भी बुंदेलखंड और उत्तर भारत के इतिहास में स्वर्ण अक्षरों में अंकित हैं। वे खंगार राजवंश के संस्थापक और गढ़कुंडार के अधिपति थे। प्रारंभिक जीवन और अभिरुचि कुँवर खेता का जन्म एक प्रतापी क्षत्रिय परिवार में हुआ था। बचपन से ही उनकी रुचि सामान्य खेलों के बजाय युद्ध कौशल में अधिक थी। मल्ल-युद्ध: उन्हें कुश्ती लड़ने का बहुत शौक था और वे अपने समय के अजेय योद्धा माने जाते थे। शस्त्र विद्या: तलवार चलाने और सैन्य संचालन में वे बाल्यकाल से ही निपुण हो गए थे। पृथ्वीराज चौहान से मिलन इतिहास की एक महत्वपूर्ण घटना तब घटी जब दिल्ली (इन्द्रप्रस्थ) के सम्राट पृथ्वीराज चौहान सौराष्ट्र (गुजरात) की यात्रा पर थे। वहाँ उन्होंने एक अत्यंत साहसी दृश्य देखा: एक युवा वीर (कुँवर खेता) निर्भय होकर एक हिंसक सिंह से युद्ध कर रहा था।उनकी इस अद्भुत वीरता को देखकर सम्राट पृथ्वीराज चकित रह गए।सम्राट ने उनकी प्रतिभा को पहचाना और उन्हें अपने साथ दिल्ली चलने ...

The Great Pumpkin Conspiracy

  The Great Pumpkin Conspiracy The Great Pumpkin Conspiracy In the small, sleepy village of Sundarpur lived a farmer named Ramu Kaka . Ramu Kaka was a simple man with a simple dream: to win the "Biggest Pumpkin Award" at the annual Village Fair. He had three "helpers" on his farm who were actually the source of 90% of his high blood pressure: 🐄 Basanti: A cow who believed she was a royal princess and refused to eat grass unless it was freshly washed. 🐐 Chiku: A goat with the climbing skills of a ninja and the appetite of a vacuum cleaner. 🐕 Tiger: A dog who was afraid of cats, squirrels, and his own shadow. The Mission One Tuesday evening, Ramu Kaka stood before his prize crop: a pumpkin the size of a bean bag chair. He looked at his animals sternly. "Listen to me," Ramu warned, wagging a finger. "The judges are coming tomorr...

SELECTOR IN CSS

Selector In CSS Hello guys today we discuss about css selector : CSS selectors are the patterns used to "select" the HTML elements you want to style. They are the fundamental link between your HTML structure and your CSS rules . Here is a breakdown of the most common types of selectors, ranging from simple to complex. 1. Basic Selectors These are the most common ways to target elements.  * Universal Selector (*)    Selects all elements on the page.    * {   box-sizing: border-box; }  * Type (Tag) Selector    Selects all elements of a specific HTML tag name.    p {   color: blue;  }  * Class Selector (.)    Selects all elements that have a specific class attribute. This is the most versatile selector.    .button {   background-color: red;  }  * ID Selector (#)    Selects a single element with a specific unique ID.    #header {   height: 100px;  } 2. G...

Lambda Expression in java

 Java Lambda Expression            Lambda expression provided implementation logic for functional interfaces (interfaces with only one abstract method ) which we will discuss soon. lambda expression add the essence of functional programming in java . They are functional constructs without classes, which can be passed like objects and executed as required. They also make the modifires, return type and parameter types completely optional. Syntax of Lambda Expression (arguments) - > ( body ) the syntax of lambda expressions is comprised of three parts: An  argument list :    The parameter list should be the same (in terms of number, type, and order of arguments) as that of the abstract method of the interface. For example: Syntax: () -> { System.out.println("No argument"); } OR (int argument1, String argument2) -> { System.out.println("Multiple arguments"); }     Argument types can be eliminated, making them inferred ty...

Introduction of php and it's features

 what is php ? what is features of php language? Introduction of PHP  PHP is a server site scripting language. which we use to create a dynamic  content, website  and web application.  PHP language is develop by Rasmus Lerdorf in 1994. In this time, PHP is a most popular scripting language. Most popular website as facebook and yahoo developed by php language. Features of PHP Php is a most popular and secondary used for world wide scripting language. there are many features of php language:- simple and easy to learn open source error reporting faster case sensitive loosely type language independent plateform Simple And easy to learn PHP is a very simple to use read and write.PHP language understandable and user-friendly. user and developer easily identify PHP code. Interpreted language PHP is an interpreted language, which means there is no need for compilation. Interpreters run through a program line by line and execute the code. PHP language no need of compiler...

HTML Span tag

 <span> tag          The HTML <span> element is a generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class or id attributes), or because they share attribute values, such as lang. It should be used only when no other semantic element is appropriate. The <span> element is an inline element, which means it can be used within a block-level element (such as a paragraph) but cannot contain block-level elements (such as a heading or a paragraph) itself. If you want to group block-level elements, you should use the <div> element instead. Example: Here's an example of how to use the <span> element: <p>   This is some text in a paragraph.  <span>   This text is highlighted in a span element. </span>   This is some more text in the paragraph. </p>             ...

HTML div tag

 HTML<div> tag            The div tag is a block-level element that is used to group other HTML elements together and apply styles to them. It is often used as a container for other HTML elements, and can be used to create complex layouts. The div tag does not have any special semantic meaning, so it is usually used as a way to group and apply styles to other elements. Example: Here is an example of the div tag in action: <div style="color:red;">   <p>This paragraph will be red.</p>   <p>This paragraph will also be red.</p> </div> In this example, the div element is used to group two p elements and apply a red text color to them.

Basic html tags

 Basic html tags          Here is a list of some basic HTML elements that you might use when creating a webpage: Headings tags : <h1> to <h6>: These elements represent headings of different sizes, with <h1> being the largest and <h6> being the smallest tag  Paragraph tag: <p>: This element represents a paragraph of text. <br>tag: <br>: This element represents a line break. <hr>tag: <hr>: This element represents a horizontal rule, or a line that runs across the width of the page. <ul> And <ol>tags: <ul> and <ol>: These elements represent an unordered (bulleted) list and an ordered (numbered) list, respectively. Each item in the list is represented by an <li> element. <a>tag: <a>: This element represents a hyperlink to another webpage or a specific location on the current webpage. <img>tag: <img>: This element represents an image. <div> And ...

Heading tags in HTML

 What is headings tags in HTML? Describe headings tags in HTML  Headings tags in HTML               Heading tags in HTML are used to define headings and subheadings in a web page. There are six different heading levels, ranging from <h1> to <h6>. The <h1> tag is used for the most important heading, while <h6> is used for the least important heading. In HTML, headings are defined with the h1, h2,h3,h5 and h6 tags. The h1 tag is the most important and the h6 tag is the least important. Here is an example of how you might use heading tags in an HTML document: <h1>Main Heading</h1> <h2>Subheading</h2> <h3>Sub-subheading</h3> <h4>Sub-sub-subheading</h4> <h5>Sub-sub-sub-subheading</h5> <h6>Sub-sub-sub-sub-subheading</h6>         Headings are used to structure the content on your web page, and they should be used in a hierarchical...

HTML

HTML  HTML (HyperText Markup Language) is a standard markup language used to creat web pages. It is the foundation of most websites and is used to structure and format the content of a web page, including text, images, and other media. HTML is a very simple language that consists of a set of tags enclosed in angle brackets. These tags tell the web browser how to format and display the content of a web page. Here is a simple example of an HTML document: <html>    <head>       <title>My blog Page</title>    </head>    <body>       <h1>Welcome to my blog</h1>    </body> </html> In this example, the html element is the root element of the HTML document and it contains the 'head' and 'body' elements. The 'head' element contains information about the document, such as the title, and the 'body' element contains the content of the document.

Loops in java

 Describe loops in java. What are loops in java? Loops in java In Java, a loop is a control flow statement that allows you to repeat a block of code a certain number of times or until a certain condition is met. There are several types of loops in Java: for loop:  This is used to iterate a block of code a fixed number of times. The syntax is as follows: for (initialization; termination; increment) {  //  statement(s); } while loop:  This is used to execute a block of code repeatedly as long as a certain condition is true. The syntax is as follows: while (condition) {   // statement(s); } do-while loop:  This is similar to a while loop, but the block of code is always executed at least once before the condition is checked. The syntax is as follows: do {    //statement(s); } while (condition); for-each loop:   for-each loop is used to iterate through the elements of an array or a collection. The syntax is as follows: for (type var : a...

Introduction of html

 What is html? Write introduction of html with example? Introduction of html HTML stands for Hypertext Markup Language. It is a standard markup language used to create web pages and web applications. HTML is used to structure the content of a web page, and to define the meaning of the content.  Example  : <!DOCTYPE html> <html> <head>   <title>My Website</title> </head> <body>   <h1>Welcome to my website!</h1>   <p>Hello, my name is Ankit and this is my website.</p> </body> </html>

Introduction of Javascript

 What is javascript and it's example? Describe introduction of Javascript. Introduction of Javascript  JavaScript is a programming language that is commonly used to add interactivity to web pages. It is typically used in conjunction with HTML and CSS to create dynamic and interactive web applications.   Example:  Here a given a example of JavaScript program that displays an alert message when a button on a web page is clicked: <button onclick="show()"> Click me</button> <script>   function show() {     alert("Hello, World!");   } </script>

Introduction of Java and it's features

 Describe about Java language. Write introduction of java with example? What is Java? Introduction of Java  Java is a popular programming language that is used for developing a wide range of applications, including web, mobile, desktop, and backend applications. It is an object-oriented language that is designed to be simple and easy to learn, with a syntax that is similar to English. Java is known for its portability, as the same Java code can be used to run programs on different types of computers and devices. Java is also used in Android app development, as the Android operating system uses a variant of Java as its primary programming language. Java has a large and active community of developers, and there are many libraries, frameworks, and tools available for Java developers to use. Syntax : Class  class name{ Public static void main (String[] args){  statement; }} Example: public class Example {   public static void main(String[] args) {     ...

Introduction of Android and it's features

 What is Android? Describe Android os. Write introduction of Android? Introduction of Android  Android is a mobile operating system developed by Google. It is based on a modified version of the Linux kernel and other open source software, and is designed primarily for touchscreen mobile devices such as smartphones and tablets. Android's user interface is based on direct manipulation, using touch gestures that loosely correspond to real-world actions, such as swiping, tapping and pinching, to manipulate on-screen objects, along with a virtual keyboard for text input. In addition to touchscreen devices, Google has further developed Android TV for televisions, Android Auto for cars, and Wear OS for wrist watches, each with a specialized user interface. Features of Android  Android is a mobile operating system developed by Google. It is used on a wide range of devices, including smartphones, tablets, and wearable devices. Some of the features of Android include:- Customizable...

Crud Operation In PHP

  What is crud Operation in php? Or Write a program where php program connect MySQLi database? Today we know about crud Operation and how to connect MySQLi database with php program. CRUD OPERATION        Crud Operation stands for create,  read (select), update and delete. First of all we create a MySQLi database in phpmyadmin. so we have 'mydb' database and table name 'student'.now create a connection of database php file connection.php and write this code given below:- Example :   'connection.php', <?php $hostname = "localhost" ; $username = "root" ; $password = "" ; $dbname = "mydb" ; $con = mysqli_connect ( $hostname , $username , $password , $dbname ); if ( $con ){     echo "connected" ; } else { echo "not connected" ; } ? > <?php create database with php:  create database with php command ,code given below:- Example:   $sql = ' CREATE Database mydb ' ;          now we insert...

if condition with example in php

 what is if condition in php? write a if condition example in php? if condition in php php  me if statement  ka use aap kisi bhi   condition ko check karne ke liye kar sakte h.  iske   liye  aap pahle  variable  ko declare karte hai. eske baad me aap   if  condition me aap pahle condition ko dete h . baad me statement. agar aapki condition true hoti hai to if block me diya gaya statement exicute ho jayega otherwise condition false hone per controller bahar ho jayega.php me program write kare ke liye php scripting opening tag and closing tag ka use karte hai. opening and closing  tag ke middile me apne program ko write karte hai.     Syntax:  if(condition){ statement; } Example:    <?php $a =10;  if ($a > 5) { echo "condition is true"; } ?> output: condition is true                  

if else condition with example in javascript

 what is if else condition and example?      or if else with example .  if else condition in Javascript  Javascript me if else condition me agar if block me di gayi condition true hoti h to if block ka statement exicute hoga otherwise  condition false hoti hai to else block ka statement exicute hoga. syntax:                    if(condition) {                    statement ;                    } Example 1:                    //if else condition in javascript                         let a = 5;                         if(a<10) {                  ...

what is if condition in javascript

what is if statement  in  java script If statement  :                        java script me if statement  ka use aap kisi bhi   condition ko check karne ke liye kar sakte h.  iske   liye  aap pahle  variable  ko declare kare eske baad me aap   if condition me aap pahle condition ko dete h eske baad me statement. agar aapki condition true hoti hai to if block me diya gaya statement exicute ho jayega otherwise condition false hone per controller bahar ho jayega. Syntax: If(condition) { Statement; } Example: Var a=10; If (a<20) { Console.log(a); }                                              

How to create a table in html

  Hello dosto 🙏🙏 Aaj ham dekhenge ki kaise html Me table create karte hai . Create A Table In Html: Html me table create karne ke liye  for example ham student name ki table banayenge:- <!DOCTYPE html> <html> <head> <Title>Creating a table</title> </head> <body> <table border="1" cellspacing="0"> <tr> <tr>student table</tr> <th>name</th> <th>class</th> <th>address</th> </tr> <tr> <td>ram</td> <td>bca</td> <td>rampur</td> </tr> </tr> </table> </body> </Html> Coding karne ke baad apka Student name ki table ban Jati hai If this information is helpful, To aisi hi coding sekhna chahte to neeche comments kare Thanks