Posts

Showing posts from December, 2020

An Introduction To QBASIC: A Programming Language

Image
  An Introduction To QBASIC : A Programming Language (By Subhro Mukherjee) Hi Friends! Welcome back to another new article  of this blog where I teach you about technology. In Today's Blog we are going to learn about a  very famous programming language for children/beginners which is  a version of BASIC (Beginners All Purpose Symbolic Instruction Code) programming language named QBASIC(Quick Beginners All Purpose Symbolic Instruction Code). this blog is basically for children/students of class V who are being just introduced with this Programming language. This blog also contains my YouTube Video with the same topic so that you can easily understand the Topic. Video is at the end of this article. So in this article we will cover these topics :(as well as in the video) What is BASIC and its origin What is QBASIC and its origin What are the features of QBASIC What are the QBASIC Screens How To Download and install QBASIC 1) BASIC and its origin: BASIC is one of the sim...

How To Create Forms Using HTML Programming

Image
  How To Create Forms Using HTML Programming (By Subhro Mukherjee) Hi Friends ! my name is Subhro Mukherjee and welcome to my blog. here I provide you with  Technology articles and in today’s blog we are going to learn how to create a form using HTML. if you don't know what is HTML, let me tell you HTML is Hypertext  markup language which is used to design and to create webpages. it's quite simple to make a form using Html programming. Now lets talk about the tags used in HTML forms: The <form> tag It is a container tag (a tag which needs opening and closing) in HTML programming. it includes various elements related with form. the syntax of using this tag is : <form> body of the form that contain the form elements </form> The body of the form includes various form elements like text fields, radio buttons , check box, etc. This information is provided to serve different purposes of the user. now, let's discuss various form elements available for ...