Posts

HTML(Hyper Text Markup Language)

Image
 HTML(Hyper Text Markup Language) Simple Example Of HTML <!doctype html> <html> <body> <p> SWITZERLAND </p> <h2> SWISS_SRK </h2> <b> NRI GROUP OF INSTITUTE BHOPAL </b> <i> NIIST </i> <u> underline tag </u> <p> Shahrukh Khan </p> </body> </html>                               -SHAHRUKH KHAN(CSE)

CSS(Cascading Style Sheets)

Image
 CSS(Cascading Style Sheets) 1.Inline CSS 2.Internal CSS 3.External CSS 1.Inline CSS:- <p style="color:red;"> hello </p> Examples:- <!doctype html> <html> <head> <title> Shahrukh Khan </title> </head> <body> <h3> Registration Form </h3> <p> hello my name is Shahrukh Khan </p> <p style="color:red;"> hello my name is Shahrukh Khan </p> <p> hello my name is Shahrukh Khan </p> <p> hello my name is Shahrukh Khan </p> <p> hello my name is Shahrukh Khan </p> </body> </html> 2.Internal CSS:- <!doctype html> <html> <head> <title> Shahrukh Khan</title> <style> p{color: red;} h1{color: green} <style> </head> <body> <h3> Registration Form </h3> <p> hello my name is Shahrukh Khan </p> <p> hello my name is Shahrukh Khan </p> <p> hello my name is Shah

ONLINE SHOPPING BILL PROJECT USING PYTHON

ONLINE SHOPPING BILL PROJECT USING PYTHON   #Welcome customer print ( "Welcome to Python Shop" ) #Get user input name = input ( "Please enter your name:" ) item = input ( "Please enter what you want to buy:" ) color = input ( "Color:" ) price = float ( input ( "Price:" )) quantity = float ( input ( "Quantity:" )) #process data total_price = price * quantity #Output receipt print () print ( "Your receipt: \n " ) print ( "Name:" + name . title ()) print ( "Perchased item:" + color . capitalize ()+ " " + item . lower ()) print ( "price:" + str ( price )) print ( "Quantity:" + str ( quantity )) print ( "Total price:" + str ( total_price ))

COMPLETE "C" LANGUAGE

Image
  Nri Group Of Institute Bhopal M.P SHAHRUKH KHAN(CSE) Chapter 0: Introduction What is Programming? Computer programming is a medium for us to communicate with computers, just like we use Hindi or English to communicate with each other. Programming is a way for us to deliver our instructions to the computer. What is C? C is a programming language. C is one of the oldest and finest programming languages. C was developed by Dennis Ritchie in 1972. Uses of C C is a language that is used to program a wide variety of systems. Some of the uses of C are as follows: 1.     Major parts of Windows, Linux, and other operating systems are written in C. 2.     C is used to write driver programs for devices like Tablets, Printers, etc. 3.     C language is used to program embedded systems where programs need to run faster in limited memory. 4.     C is used to develop games, an area where latency is very important, i.e., a computer has to react quickly to user input. Chapte