Domino's Logo using HTML & CSS3
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; ...
Comments
Post a Comment