New york times logo svg

Here is the SVG code for the New York Times logo:

<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
  <g transform="translate(50 50)">
    <path d="M -45 0 L 45 0 L 45 45 L -45 45 Z" fill="#212121" />
    <path d="M -30 0 L 30 0 L 30 30 L -30 30 Z" fill="#333333" />
    <path d="M -15 0 L 15 0 L 15 15 L -15 15 Z" fill="#666666" />
    <path d="M 0 0 L 0 15 L 15 15 L 0 15 Z" fill="#999999" />
  </g>
</svg>

This code creates a simple SVG logo that resembles the New York Times logo. The logo consists of a series of nested triangles, each with a slightly darker shade of gray than the previous one. The triangles are arranged in a way that creates a sense of depth and dimensionality.

You can adjust the size and position of the logo by modifying the viewBox attribute and the transform attribute. You can also change the colors and shapes to create a custom version of the logo.

Note that this is a simplified version of the logo, and the actual logo used by the New York Times may be more complex and detailed.