Summer or winter Get link Facebook X Pinterest Email Other Apps October 28, 2017 survey crazy survey summer or winter which is your favourite summer winter Your answer important for us Get link Facebook X Pinterest Email Other Apps Comments
Domino's Logo using HTML & CSS3 August 07, 2020 Domino's Logo Using CSS HTML CODE <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="refresh" content="3"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Domino's Logo</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="dominos"> <span class="d1"></span> <span class="d2"></span> </div> <script src="codee.js"></script> </body> </html> CSS Code(style.css) body { background-color: #333; text-align: center; } .dominos { background-color: #fff; display: inline-block; font-size: 0; padding: 5px; border-radius: 30px; margin: 150px 20px 20px 20px; transform: rotate(-45deg); } .d1 { background-color: #0079ae; width: 250px; ... Read more
Text Shaking Effect Using HTML and CSS3 August 10, 2020 Text Shake Animation in HTML And CSS3 HTML CODE <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>css shake effect</title> <link rel="stylesheet" href="style.css"> </head> <body> <h1>shake effect!</h1> </body> </html> CSS Code(style.css) html, body { height: 100%; margin: 0; } body { display: flex; justify-content: center; align-items: center; font-family: monospace; background: #000; } h1 { position: relative; text-transform: uppercase; letter-spacing: 6px; font-size: 10vw; font-weight: 900; text-decoration: none; color: white; display: inline-block; background-size: 120% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background... Read more
Comments
Post a Comment