Skip to main content

Posts

Showing posts from March, 2021

Copy to clipboard using HTML, CSS and JavaScript

 <html> <head> <title>COPY TO CLIPBOARD</title> <style> table{   margin:0 auto;   width: 500px;   margin-top: 100px; } td{   padding-bottom: 50px; } .title{   font-weight: bold;   font-family: calibri;   font-size: 42px;   color: #fff;   text-shadow: 2px 2px 20px black; } .note{   font-size: 20px;   font-family: Arial; } #key{   width:330px;   padding: 5px;   border:solid 2px navy;   border-radius: 5px;   text-align: center;   font-family: Arial;   font-size: 24px;   background-color: #fff; } #txt{   width:480px; height:200px;   border: solid 2px navy;   border-radius: 5px;   padding: 10px;   text-align: center;   font-family: calibri;   font-size: 26px; } #btn, #gen{   font-family: calibri;   font-size: 18px;   font-weight: bold;   border:none;   color:#fff;   border-radius: 5px;   padding...