<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="style.css"> </head> <body> <div> <h1>Robin Van Persie</h1> <p>My idol is Robin Van Persie, is a Dutch former footballer who plays as a striker.</p> <img src="uploads/41-20250227191451.jpg" /> <div class="container"> <h2>His birthday</h2> <p>August, 6th, 1983</p> <h2>Club career</h2> <p>2001–2004 Feyenoord</p> <p>2004–2012 Arsenal</p> <p>2012–2015 Manchester United</p> <p>2015–2018 Fenerbahce</p> <p>2018–2019 Feyenoord</p> </div> </div> <script src="script.js"></script> </body> </html>
div{ background-color: red; width: 480px; height: 1320px; text-align: center; } h1{ color: #ffffff; font-size: 60px; } h2{ color: #ffffff; font-size: 36px; } p{ color: #ffffff; font-size: 28px; } img{ width: 300px; display: block; margin: 50px auto; } .container { background-color: #e8a0b8; width: auto; height: auto; box-shadow: none; box-sizing: border-box; }