Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts
How To Create a Contact Form with CSS

How To Create a Contact Form with CSS

agyanadda
You can create contact form using HTML, CSS and JavaScript. Click Here to Live check body {font-family: Arial, Helvetica, sans-serif;} * {box-sizing: border-box;} .open-button { background-color: #555; color:
How to create Login Form

How to create Login Form

agyanadda
Create Responsive Login Form using Bootstrap. Bootstrap Example .btnw{width:49%;} .login-or { position: relative; font-size: 18px; color: #aaa; margin-top: 10px; margin-bottom: 10px; padding-top: 10px; padding-bottom: 10px; } .span-or {
How to use CSS selector in CSS

How to use CSS selector in CSS

agyanadda
Interal CSS p{ color:red; } #abc{ color:blue; } .ab{ color:green; } Hello How r u[Tag based calling] Hello[ Id based call] My Name is Mohan
How to use web Font in CSS

How to use web Font in CSS

agyanadda
@font-face{ font-family:Aclonica; src: url(Aclonica.ttf); } @font-face{ font-family:Acme-Regular; src: url(Acme-Regular.ttf); } h1{ font-family:Aclonica; } h2{ font-family:Acme-Regular; } AclonicThe @font-face Rule AclonicThe @font-face Rule
How to use Link state in CSS

How to use Link state in CSS

agyanadda
LINK STATE #ab1:active{ color:red; } #ab2:hover{ color:red; } #ab2:hover{ color:red; } #ab3:visited{ color:red; } ACTIVE [click mee] HOVER [TOUCH ME] Visited [ YOU HAVE VISITED LINE]
How to create  flip carts using css

How to create flip carts using css

agyanadda
body { font-family: Arial, Helvetica, sans-serif; } .flip-card { background-color: transparent; width: 300px; height: 300px; perspective: 1000px; } .flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center;
How to create zoom in in CSS

How to create zoom in in CSS

agyanadda
* { box-sizing: border-box; } .image-wrap { width: 200px; height: 200px; position: relative; overflow: hidden; } .image-wrap img { top: -50px; left: -150px; height: 400px; width: 400px; transition:
How to create zoomout in CSS

How to create zoomout in CSS

agyanadda
Agyan adda #overlay { border: 1px solid black; width: 300px; height: 265px; display: inline-block; background-image: url('https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_voh2IReAtg5gGe6d0p2S2DwdaCekatl9nLCFLOLORH6D9wh0oFdn2VQMnnNh0To7RRxjXXdYswvePDsbK9j70ShvF6guWEqBJAOZ0icEBzhTJeYcsX2ByziSWLWXQCU2nsVV5oC2-2ZNsU71bQyGgIIm0FdKw-vAlsn9AYeuzBEdUoRcbacdYA=s0-d'); background-repeat: no-repeat; } function zoomIn(event) { var element = document.getElementById("overlay"); element.style.display =