Moon and Cloud code: 1.index.html: <!DOCTYPE html> <html> <head> <meta charset=»UTF-8″> <title>Moon and Cloud</title> <link rel=»stylesheet» href=»style.css»> </head> <body> <div class=»container»> <div class=»center»> <div class=»moon»></div> <div class=»cloud»> […]
Архивы по месяцам: Июль 2022
3D Flip Menu Hover Effect code: 1.index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Menu Hover Effect</title> <link rel="stylesheet" href="style.css"> </head> <body> ¨K0K </body> </html> 2.style.css: body { margin: 0; padding: 0; background: black; } ul { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; margin: 0; padding: 0; […]
Content Box Hover Effect code: 1.index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Content Box Hover Effect</title> <link rel="stylesheet" href="style.css"> </head> <body> ¨K0K </body> </html> 2.style.css: body { margin: 0; padding: 0; background: black; font-family: Verdana, Geneva, Tahoma, sans-serif; } .box { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: […]