Skip to main content

Posts

Showing posts from June, 2023

How To Make Live Character Count | HTML CSS JavaScript

  <!DOCTYPE html> <html> <head>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1">     <title>SkycodingLab - Live Character Count Application</title>     <style>         *{             padding: 0;             margin: 0;             box-sizing: border-box;             font-family: "Poppins",sans-serif;         }         body{             background-color:#0078d4;         }         .container{             width: 400px;             position: absolute;             transform: translate(-50%,-50%);       ...