HTML code for a cartoon face

Here is the HTML code for a cartoon face:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cute Cartoon</title>
    <style>
        body {
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        .cartoon {
            width: 300px;
        }
    </style>
</head>
<body>
    <div class="cartoon">
        <img src="https://example.com/cute-cartoon-image.jpg" alt="Cute Cartoon">
    </div>
</body>
</html>