Skip to main content

Posts

Showing posts with the label Javascript

create a NOTE app by HTML-JS | Design for note app | App challenge

 CREATING A STICKY NOTE APP WITH HTML AND JS WITH EXPLAIN IN HINDI Hello There..! Here is the sticky note app code of html . 👇👇👇👇👇👇 <!DOCTYPE html> <html>     <head>         <title>Clock + to-do app</title>         <script src="https://code.jquery.com/jquery-3.1.1.js"></script>         <script type="text/javascript">           function app(){ var today = new Date(); var date = today.getDate(); var montharr = ["January","February","March","April","May","June","July","August","September","October","November","December"]; var month = montharr[today.getMonth()]; var year = today.getFullYear(); $("#date").text(date + " " + month + "," + " " + year); var h = today.getHours(); var m = today.getMinutes(); var s = today.getSeconds(); var ampm = ""; if(h...

Instagram Login clone by HTML | Html Code for insta 2021

  MAKE THE INSTAGRAM LOGIN PAGE BY HTML                                                            Instagram login clone HTML FILE -      <!DOCTYPE html> <html> <head>   <script src="insta_clone.js">   </script>   <link rel="stylesheet" href="insta_clone.css">   <script src="https://kit.fontawesome.com/7067f9ae94.js" crossorigin="anonymous"></script>   <meta charset="UTF-8">   <title>title</title> </head> <body onload="myFunction()" style="margin:0;">   <div id="loader"><i class="fab fa-instagram"></i></div>   <div style="display:none;" id="myDiv" class="animate-bottom">     <div class="container">         <div class="head">   ...

Html for beginners || What is Html || Where to start | Watch the codoblog video of html

 Hey all ..!     Start your carrier with by learning new skill which name is HTML , If you are interested in the web designing then you must started watch the video of codoblog.    If you are very unknown about HTML language then start from the scratch with codoblog's efforts. Watch series of codoblog and feel free to comment your doubt.                                                        Click to Launch for new beginning ....

How to Generate Barcode || code for Barcode

|| Random Barcode Generator || Barcode on the basis length of text || #CODE :                 Barcode.html ==>        <html>        <head>            <title>Barcode Generator</title>            <link rel="stylesheet" href="Barcode.css">     </head>     <body>         <div>Barcode Generator</div>         <input type="text" placeholder="Type..."/>         <button onclick="generate()">Generate Barcode</button>           <svg id="barcode"></svg>           <script src="https://cdnjs.cloudflare.com/ajax/libs/jsbarcode/3.11.0/JsBarcode.all.min.js"></script>           <script>     ...

Random Captcha Generator

 How to generate random captcha || JAVASCRIPT techinc Here, you will going to teach how to generate random captcha by javascript #CODE: <!DOCTYPE html>     <html>         <head>             <title></title>         </head>         <body>             <canvas width=150 height=70 style="border:1px solid black;"></canvas><br>             <button style="width:150px;             height:40px;             color: red;             -webkit-tap-highlight-color:rgba(0,0,0,0);" onclick="generateCaptcha()">Generate Captcha</button>             <style type="text/css">                 body{     ...

How to create Stopwatch by using Html and Javascript | Digital Stopwatch

How to create Stopwatch by using Html-Css-Javascript || Digital StopWatch  #CODE  :  <!DOCTYPE html> <html> <head> <title>Stopwatch</title> <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> <style type="text/css"> body{ margin: 0;     padding: 0;     background-color: #6495ED;     box-sizing: border-box; } .con{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 5px; background: #ececec; box-shadow: 20px 20px 60px red, -20px -20px 60px #fff; height: 380px; width: 280px; } .time{ border-radius: 50%; background: #fff; box-shadow: inset 20px 20px 60px green, inset -20px -20px 60px #fff; height: 150px; width: 150px; position: absolute; margin: 60px 0 0 65px; transform: scale(1.5); } .buttons{ ...

Javascript FireCracker Animation

  || FireCracker Animation Using JavaScript ||  #CODE :                                                                              <!DOCTYPE html> <html> <head> <title>JavaScript FireDesign</title> <style type="text/css"> body{ background: #000; margin: 0; width: 100%; overflow: hidden; } </style> </head> <body> <canvas></canvas> <script type="text/javascript"> var t =0; var c = document.querySelector("canvas"); var $ = c.getContext('2d'); c.width = window.innerWidth; c.height = window.innerHeight; $.fillStyle = 'hsla(0,0%,0%,1)'; window.addEventListener('resize',function(){ c.width = window.innerWidth; c.height= window.innerHeight; },fa...

React LOGO

How to Design React LOGO || React Logo with Animation || Html-Css-Js Here is the code by using we can design the react LOGO with the animation effect.             This logo we can use in our websites. Don't hasitate, Just do the code. And Keep Loving CodoBlog. #CODE <!DOCTYPE html> <html> <head> <title>Logo React</title> <style type="text/css"> body{ margin: 0; padding: 0; overflow: hidden; position: fixed; } #canvas{ background-color: black; } </style> <script type="text/javascript"> "use strict"; var W,H,c,ctx; var circles=[]; const random = (max=1,min=0)=> Math.random()* (max-min)+min; const util={ drawCircle(x,y,r,c){ ctx.beginPath(); ctx.fillStyle = c; ctx.arc(x+W/2, y+H/2,r,0,2*Math.PI); ctx.fill(); ctx.closePath(); }, drawCircleRotate(x,y,r,c,a){ ctx.beginPath(); ctx.save(); ctx.fillStyle =...

The PUBG Show

The Pubg Show | Code for Pubg | For the Pubg Lovers.. Hey everyone..! This is the code about the Pubg background and the hover hide animation. You will able to design the code for pubg show. If you are the coder and pubg lover, then you must have to w try to do the code. #CODE : <!DOCTYPE html> <html> <head> <title>For PUBG Lovers</title> <script src="https://code.jquery.com/jquery-3.4.1.js"></script> <script type="text/javascript"> window.addEventListener("load",function(){ const loader = document.querySelector(".loader"); loader.className += " hidden"; }); $(document).ready(function(){ $("body").show(); $(".screen").hide(); $(document).mousemove(function(e){ $(".screen").show() $(".circle").css('background','radial-gradient(circle at '+e.pageX+'px '+e.pageY+'px,transparent,#000 40%)') })...

The World Map

The World Map Here is the code of Designing the WORLD MAP by using Html-Css-Js only.Google Map provide you the option that is Map for Developer. So, CodoBlog provide you the code for how to design the map. CODE -     <!DOCTYPE html> <html> <head> <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <link href='https://api.mapbox.com/mapbox-gl-js/v1.8.1/mapbox-gl.css' rel='stylesheet'/>     <link rel="stylesheet" type="text/css" href=""> <title>The World Map</title> <style> *{ margin: 0; padding: 0; } #map{ width: 100vw; height: 100vh; } </style> </head> <body> <div id='map'></div> </body> <script src='https://api.mapbox.com/mapbox-gl-js/v1.8.1/mapbox-gl.js'></script> <script> mapboxgl.accessTok...