Skip to main content

Posts

Showing posts from May, 2019

3D Text with Html and Css

Now we will make 3D Slinky Text with Html and Css. First you create a html file which name is 'index.html' , then open your file with your editor and type this html code - <!DOCTYPE html> <html> <head>     <title>Slinky Text</title>     <style>         body{             margin: 0;             padding: 0;             font-family: sans-serif;         }         .slinky{             position: absolute;             top: 50%;             left: 50%;             transform: translate(-50%,-50%);      ...

Calculator with Html, Css and Javascript

Calculator is essential program in our life. It's create an any high level programming language. Now create a Calculator with Html, Css and Javascript. First you create a html file which name is "index.html" , then open this file with your editor. My update calculator making blog visit here... How to make a calculator using html css and javascript in 2022 <!DOCTYPE HTML> <html lang="en-US"> <head>     <meta charset="UTF-8">     <title>JavaScript Event</title>     <style type="text/css">         *{             margin:0;             padding:0;         }         body{             background:#808080;         }         ....