list_comprehensions in python Get link Facebook X Pinterest Email Other Apps March 28, 2020 CSZONE list_comprehensions in python Get link Facebook X Pinterest Email Other Apps Comments
HTML Signup Login Form With Source Code November 25, 2020 CSZONE HTML Signup Login Form With Source Code Source Code : For Login Page: login_page.html <!DOCTYPE html> <html> <head> <title>Login Page</title> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="content-language" content="en-gb"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="sty... Read more
Change Emoji Reacttion using Javascript May 29, 2020 CSZONE Change Emoji Reacttion using Javascript <!DOCTYPE html> <html> <head> <title>Emoji</title> <style> body{ background-color: black; } button{ width: 100px; height: 43px; color: green; border-radius: 10px; } button:hover{ background-color: yellow; } </style> </head> <body> <center> <p id="demo" style="font-size: 100px;">😐</p> <button onclick="document.getElementById('demo').innerHTML='😐'">Sad</button> <button onclick="document.getElementById('demo').innerHTML='😀'">Smile</button> </center> </body> </html> Source Code : Download Read more
Comments
Post a Comment