CSS Position
<!DOCTYPE html> <html> <head> <style> .card { position: relative; } .card .badge { position: absolute; top: 10px; right: 10px; } </style> </head> <body> <div class="card"> <p>Wireless headphones</p> <span class="badge">New</span> </div> </body> </html>