Posts

Virtual Machine

Image
 What is Virtual Machine ?  A Virtual Machine instance of a computer that can perform almost all of the same functions as a computer, including running applications and operating systems.  A Virtual Machine (VM) is a digital version of a physical computer. Virtual Machine software can run programs and operating systems, store data, connect to networks, and do other functions, and requires maintenance such as updates and system monitoring. Multiple VMs can be hosted on a single machine, often a server, and then managed using virtual machine software. This provides flexibility for compute resources (compute, storage, network) to be distributed among VMs as needed, increasing overall efficiency. This architecture provides the basic building blocks for the advanced virtualized resources we use today, including cloud computing. What are virtual machines used for? Some of the most popular reasons people run virtual machines include: Testing   - Oftentimes software develope...

LOGIN PAGE

Image
Create a Login Page Using HTML and CSS : Source Code : - HTML  :- <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < title >Login Form</ title >     < link   rel = "stylesheet"   href = "style.css" >     < script   src = "https://kit.fontawesome.com/6618bd5d88.js"   crossorigin = "anonymous" ></ script > </ head >   </ head > </ head > < body >     < div   class = "login-form" >         < div   class = "text" >LOGIN</ div >         < form   action = "" >     ...

SIGN UP PAGE

Image
Create a Sign Up Page Using HTML and CSS  SOURCE CODE : - HTML :-  <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < title >Login Page</ title >     < link   rel = "stylesheet"   href = "style.css" > </ head > < body >          < div   class = "login-wrapper" >         < div   class = "login-img" >             < img   src = "3.jpg"   alt = "" >         </ div >         < div   class = "login-form" > ...

Neumorphism Button

Image
Create Neumorphism Button Using HTML and CSS  Source Code :-  HTML :- <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < title >Neomorphism</ title >      <!-- this is custom  css -->     < link   rel = "stylesheet"   href = "22_september.css" >     </ head > < body >     < div >         < button   class = "noselect red" >BUTTON </ button >         < button   class = "noselect green" >BUTTON</ button >     </ div >   ...