<!DOCTYPE html> <html lang="de"> <head> <meta charset="UTF-8"> <title>Tuba Bild</title> <style> .tuba { position: relative; width: 100px; height: 200px; background: gold; border-radius: 50px 50px 20px 20px; margin: 50px auto; } .bell { position: absolute; top: -40px; left: -40px; width: 180px; height: 80px; background: gold; border-radius: 80% 20% 20% 80%; transform: rotate(-20deg); } .valves { position: absolute; top: 40px; left: 35px; width: 10px; height: 60px; background: darkgoldenrod; border-radius: 5px; } .valve2 { left: 50px; } .valve3 { left: 65px; } </style> </head> <body> <div class="tuba"> <div class="bell"></div> <div class="valves"></div> <div class="valve2"></div> <div class="valve3"></div> </div> </body> </html> Mehr sehen