Skip to main content

Posts

Showing posts from December, 2020

How To Create a Login Form with the help of Html and CSS

  Step 1. Open the Source Code editor (like  Visual Studio Code   ) and make file of index.html and type this html code. <! DOCTYPE   html > < html   lang =" en "> < head >      < meta   charset =" UTF-8 ">      < meta   name =" viewport "  content =" width=device-width, initial-scale=1.0 ">      < link   rel =" shortcut icon "  href =" favicon2.png "  type =" image/x-icon ">      < link   rel =" stylesheet "  href =" login.css ">      < title > Please Login Your Account </ title > </ head > < body >      < form   class =" box "  action =" login.html "  method =" POST ">          < h1 > Login </ h1 >          < input   type =" text "  name =""  placeholder =" Username ">          < input   type =" password "  name =""  placeho

Java

  What is Java? Java is a programming language that was created by a team lead by James Gosling in 1995 for Sun Microsystems .  Java is a platform independent programming language that follows the logics of "Write once, Run anywhere" . History of Java Java 1.0 Oak - January 1996 Java 1.1 - February 1997 Java 1.2 Playground - December 1998 Java 1.3 Kestrel - May 2000 Java 1.4 Merlin - February 2002 Java 5 Tiger - September 2004 Java 6 Mustang - December 2006 Java 7 Dolphin - July 2011 Java 8 - March 2014 Java 9 - September 2017 Java 10 - March 2018 Java 11 - Upcoming Java Version Let's look at the history of java version now the first version of Java again was released in early 1996 and it was called oak at that time but then again was completely renamed to Java because o width favorability. Now throughout the years till  2018 you have tenth version of Java that were released and the next version Java 11 is also going to be released in 2021 . Now, there was lot of progr

Let's Java (Android App Development)

Let's do a quick rehash of what you must remember about the basic syntax of Java.

How to make a simple loading effect for website | Source-Code

First, open your source code writer ( Visual Studio Code ) And type this code which is given below. The loading effect is something like this. <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > loading </ title >      < style >      @import   url ( 'https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap' );          * {              margin :  0 ;              padding :  0 ;              box-sizing :  border-box ;              font-family :  'Fredoka One' ,  cursive ;         }          html  {              font-size :  62.5% ;         }          .main_div {              width :  100vw ;              height :  100vh ;              background-color :  #000 ;              display :  grid ;              place-items :  center ;         }