Google Logo code: 1.index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Google Logo</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="logo"></div> </body> </html> 2.style.css: body { margin: 0; padding: 0; } .logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 130px; height: 130px; border-radius: 50%; border-top: 50px solid red; […]