Posts

Showing posts from July, 2020

Today we will learn to show an image using html tag.

Image
Lets show an image using html <img> tag. <html> <head> <title>wellcome</title> <body> <img src="C:\Users\MY PC\Pictures\Saved Pictures\mypaint.png" alt="beautiful house"> </body> </html> src attribute means the source of the image file. the alt attribute specifies an alternate text for an image, if the image fails to load. if image loads output will be:- and if image fails to load the output will be:- thats it!!!

Today we will learn to create a simple input box using html.

Image
today we will create a simple input box using html so lets start. <html> <head> <title>wellcome</title> </head> <body> <p>type your email:-<input></input></p> </body> </html> output:-

Today we will learn to create a simple html button

Image
Today we will learn to create a simple html button using <button> tag. so let us code. #keep it  in mind that html is not case sensitive. The <buttun> tag is used to create button and the caption is placed between opening and closing tags. <!DOCTYPE html> <html> <head> <title> Wellcome </title> </head> <body> <button> click me! </button> </body> </html> Output wiil be! woooh! you created button in html.

Today we will learn to make a simple Hello world! html document.

HTML is a hyper text markup language for documents designed to be displayed in a web browser. Today we will learn to make a simple hello world document using html. First i will make a simple document and later i will explain it. <!DOCTYPE html> <html> <head> <title>Wellcome</title> </head> <body> <p>Hello world!</p> </body> </html> The <!DOCTYPE html>  means that the document is HTML5 document. <html> is the root element of html document. <head> element contains meta information about document. <title> element specifies the title of a document. <body> element contains all the visible contents of the document like <p> (paragraph). wooooh! you created your first html doument.

How to setup xampp server in our windows desktop/Laptop.

Image
Friends today we will learn about how to setup xampp server in our windows desktop. 1. First of all go to  https://www.apachefriends.org/download.html   and download latest version of xampp. 2. Now install and run. 3. Run the modules as per your needs. i will run apache and mysql. 4. To set  your source files of your website go to your C Drive search for Xampp open it  and inside Xampp folder open htdocs folder. 5. Inside htdocs folder create another folder name it as you wish. i will name it mysite. 6. Now simply put your source files in mysite folder. 7. Now go to your web browser and type the  http://localhost/mysite/   thats it.

How to create our own android apps using android studio.

Image
In this post we will discuss about how to create our own android apps using android studio. To do that we will go through the following steps. 1. First of all go to the google developers official website and search for android studio. 2. Download it   and than install it on your desktop. 3.  Launch android studio. 4.  Create a new project. 5. Select activity( i recommend you to choose simple activity). 6. Click next. 7. Choose app name and company name as you wish. 8. Click finish. 9. Now connect your android mobile device with your desktop using usb. NOTE:- You need to enable usb debugging first. follow the steps 1. Go to settings then About. 2.search for Build number and tap it 7 times. 3. Now search for developer options and enable it. 4. Inside developer options enable debugging mode. thats it. 10. Now run the project. woooh!! you created your first app