Welcome to CODEBOX! (Copy 2075)
✨ Alpaca TV
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .triangle-up { width: 0; height: 0; border-left: 25px solid transparent; border-right: 25px solid transparent; border-bottom: 80px solid #555; top:50%; left:10%; } .square { height: 50px; width: 50px; top:50%; background-color: #555; } </style> </head> <body> <h2>Triangle Up CSS</h2> <div class="triangle-up"></div> <div class="square"></div> </body> </html>