Posts

Showing posts with the label Web Development

HTML Signup Login Form With Source Code

Image
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

Gredient_Flip_Profile_Card

Image
CSZONE  Gredient_Flip_Profile_Card index.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>MissionEd | Team</title> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> </head> <body> <center> <div class="container-fluid"> <br><br><br> <h1 style="color: white;">Profile Flip Card</h1> <!------------------------Row---------------------------------------> <ul class="team"> <li> <!-------------Flip Card----------------->

Change Emoji Reacttion using Javascript

Image
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;">&#128528;</p> <button onclick="document.getElementById('demo').innerHTML='&#128528;'">Sad</button> <button onclick="document.getElementById('demo').innerHTML='&#128512;'">Smile</button> </center> </body> </html> Source Code : Download