SideBar PLUS Icon with Animation || POP UP icon Box || Icon Interaction in HTML Here is the best code for pop up icon box with the animation effect. These icons will be use in the many website for users attraction. Do the code now..! #CODE : -- <!DOCTYPE html> <html> <head> <title>Page Title</title> <style type="text/css"> * { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; --light-color: #f8f9fd; background: #FF6347; } .container { position: relative; display: flex; flex-wrap: wrap; ...
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...
Comments
Post a Comment