TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Paul Graham's blog: Curious choice of HTML for building the side panel

4 pointsby j1nd4Lover 3 years ago
I was reading an essay on Paul Graham&#x27;s blog[1] and the side panel[2] seemed erringly pixelated even on my MBP. I inspected the web page and found that the whole side panel is infact a gif[3] and the different links on the page are linked using the coordinates of the image.<p>Example for the first link: &lt;area shape=&quot;rect&quot; coords=&quot;0,0,67,21&quot; href=&quot;index.html&quot;&gt;<p>TBH, I did not know this is something which can be done in HTML but that got me curious on how it ended up on PG&#x27;s blog given many limitations it has :)<p>[1]: http:&#x2F;&#x2F;paulgraham.com&#x2F; [2]: https:&#x2F;&#x2F;i.imgur.com&#x2F;uo254ts.png [3]: https:&#x2F;&#x2F;s.yimg.com&#x2F;aah&#x2F;paulgraham&#x2F;quotes-1.gif

3 comments

Beltalowdaover 3 years ago
It&#x27;s just old; back in the day HTML had very little graphic capabilities, and loading multiple images was comparatively slow (think 56k connections). So you&#x27;d load a single image and then subdivide that in clickable areas with image maps (which is what this is called).
ssss11over 3 years ago
Isn’t it an image map? No one uses them any more I don’t think but they had their time.
foldrover 3 years ago
As other commenters have said, this used to be a very common technique.<p><a href="https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;HTML&#x2F;Element&#x2F;map" rel="nofollow">https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;HTML&#x2F;Element&#x2F;ma...</a>