Remix.run Logo
Antiquated HTML Snippets and Artefacts(vale.rocks)
186 points by patadune 8 hours ago | 59 comments
matsemann 5 hours ago | parent | next [-]

I was also thinking about charsets, BOM (byte order marks) and other shenanigans that had to be correct in the top of the file for things to display as expected. At least it was a struggle for 13 year old me why sometimes æøå showed up completely broken, and sometimes not. Today it feels like a solved issue, all files are UTF-8 all the way and it just works.

https://www.w3.org/International/questions/qa-byte-order-mar...

skobes 4 hours ago | parent [-]

It is still important to declare UTF-8 either in <meta> or Content-Type header, otherwise it will usually default to Windows-1252. Yay compatibility!

samgranieri 6 minutes ago | parent | prev | next [-]

Oh this is so much fun. Takes me back to the days I built out a scraper for a daily deal intelligence website.

I literally saw daily deals that were microsoft word files saved as HTML. Ugh.

nness 6 hours ago | parent | prev | next [-]

Forever burnt into my mind is PNG alpha work-arounds in IE:

    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.png');
matsemann 5 hours ago | parent | next [-]

Hah, my thought as well, was a part of my standard page setup. And then using those transparent pngs to do rounded borders with 9 images nested within 9 divs!

Edit: and down memory lane: the spacer.gif

justsomehnguy an hour ago | parent | next [-]

I have some bad news for you: "inspect" the whitespace to the left of any comment here.

DonnyV 4 hours ago | parent | prev | next [-]

Using images for rounded corners.....ugh. I forgot all about that.

kijin 5 hours ago | parent | prev [-]

9 divs? That sounds pretty modern. I remember tables with 9 cells, with cellspacing=0 cellpadding=0 to remove spaces between those cells.

aduty 4 hours ago | parent [-]

I remember both and I'm thankful that we were able to leave it behind.

bbx 6 hours ago | parent | prev [-]

Ha, fantastic line that one. Transparent pngs caused so much unnecessary trouble in IE6, it was very annoying, and limited our options as graphic designers.

CM30 6 hours ago | parent | prev | next [-]

Reminds me of how awkward HTML doctypes used to be. Nowadays it's very simple, but in the past? You had to refer to the URL of the doctype declaration on every page

> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

This plus the X-UA-Compatible stuff mentioned in the article meant that for many people, the first few lines of code on a web page were something they probably copied from a tutorial or reference document every time, at least if they didn't have a CMS handy.

Telemakhos 4 hours ago | parent | next [-]

You only had to include a doctype if you needed to turn on strict XML rendering or do fun things with XSLT. It was great if you wanted to convert, say, TEI to something browsers could read.

You were always, since the days of HTML 1.0, able to use just <html> to open your document without a doctype. It would be in tag-soup mode, but for most documents (rather than applications) that was fine. Not only do you not need a doctype, but you don't even need a <head> statement... browsers will generate one if you leave it out.

Klonoar 3 hours ago | parent | next [-]

I am almost positive that there was one version of IE where having any space or newline before the DocType would trigger quirks mode.

zdragnar 4 hours ago | parent | prev [-]

Technically yes, but the struggle to keep IE out of quirks mode was real, and that meant a doctype and head and all the things.

TeMPOraL 5 hours ago | parent | prev [-]

Like many, I ended up memorizing the pattern at some point, and then typing it from memory.

edoceo 4 hours ago | parent [-]

My editor had templates and snippets. Very lux in 2000.

rickcarlino 4 hours ago | parent | prev | next [-]

Server side image maps are a fun one also: https://rickcarlino.com/2021/what-were-server-side-image-map...

BorisMelnik 2 hours ago | parent [-]

oh man <map> and <area> yes kids today just don't know the pain we went through.

this is back when every single byte mattered and saving a few MB was the difference between a good user experience and a bad one.

for those that never used this, you would do something like

<img src="funnycats.jpg" usemap="#funnycats-map">

<!-- the map defines clickable zones --> <map name="funnycats-map"> <shape="rect" coords="34,44,270,350" href="cats.html"> </map>

most ppl used something like Dreamweaver but bad-asses would do their own coordinates.

gavinray 2 hours ago | parent [-]

My web dev experience began right before ES6, when browsers still did not do parallel asset loads and so spritesheets were common

Why could you not have defined elements overlayed using high z index that were clickable, like invisible divs?

jgraham 24 minutes ago | parent [-]

Server side image maps predate javascript. They were in early versions of Mosaic.

Client side image maps and the script element were (AFAICT) both introduced in Netscape 2.

Even when scripting was introduced, you didn't necessarily have the ability to move elements around freely on the page. I think (but I'm not certain) that it wasn't until Netscape 4 era that you had enough layout primitives to implement the multi-layer positioning approach to custom clickable areas.

cprecioso 7 hours ago | parent | prev | next [-]

I'd only add the Safari Pinned Tabs `meta` tag (https://developer.apple.com/library/archive/documentation/Ap...), which had you define a simple black and white SVG. This image would get used when a user pinned your tab in Safari, in color when active and black when inactive.

intrasight 6 hours ago | parent | prev | next [-]

Lots of mud at the base of the wall. I think it's a good sign. It'll be a bad sign if this list does't grow.

I do bemoan the loss of the <?xml-stylesheet?> processing instruction and the JavaScript XSLTProcessor API.

forgotmypw17 5 hours ago | parent | prev | next [-]

Thank you so much for this amazing resource. One of my projects is a hyper-compatible framework that builds websites that span the compatibility spectrum from Netscape 3.x to today's browsers, and this is very helpful.

OuterVale 5 hours ago | parent [-]

Oh, that is so great to hear. Glad to provide it! While writing I was very much thinking about it from the perspective of stripping things out, rather than incorporating legacy code for legacy contexts. Really interesting to think about that line of usage.

duskwuff 2 hours ago | parent | prev | next [-]

> Smart Tags was a system Microsoft introduced in Internet Explorer 6 which would automatically inject hyperlinks into pages.

Smart Tags was present in some beta versions of MSIE6, but was removed before release. The MSSmartTagsPreventParsing meta tag never did anything useful - by the time its use was widespread, the feature it controlled had already been killed.

Semaphor 7 hours ago | parent | prev | next [-]

Ohh, conditional comments. We had so many IE holdouts on our site, I think only around 2021 I removed the last IE specific fallbacks, and I think some conditional comments were a thing until 2020.

I’m not sure when I removed a bunch of `msapplication-` fields, but probably after 2021 ;)

I guess I can remove `apple-touch-` and `application-name` stuff next…

icameron an hour ago | parent [-]

Conditional comments are still part of HTML email templates. Though soon will be dead I hope. Thanks "classic" Outlook!

101008 5 hours ago | parent | prev | next [-]

This was not a HTML snippet by itself, but I remember early 2000s almost every website had three small icons somewhere: Set as homepage, Add to favorites, Contact (an envelope/email icon). I think I never used them (I didn't use Favorites back then, don't know why), but it was nice to see that they were available.

testycool 2 hours ago | parent | prev | next [-]

Love the UX and aesthetic of this site!

jszymborski 4 hours ago | parent | prev | next [-]

I recall adding the page transitions to my website c. 2003ish with FrontPage!

Also, an aside, but it's seldom these days that I see inspirational page design but this page is gorgeous.

myfonj 4 hours ago | parent | prev | next [-]

There is similar collection in the joshbuchea/HEAD project, in DEPRECATED.md [0].

(It reminds me to finally gather and record remaining info about

    <meta name="keywords" content="...">
that's missing in both documents…)

[0] https://github.com/joshbuchea/HEAD/blob/master/DEPRECATED.md

OuterVale 3 hours ago | parent | next [-]

Keywords aren't (completely) dead (yet), unfortunately. https://bsky.app/profile/vale.rocks/post/3muylxyhg5222

Mention of usage by Yandex: https://yandex.com/support/webmaster/en/controlling-robot/me...

dchest 2 hours ago | parent | prev [-]

Why is meta keywords deprecated? I use them for my custom website search. I don't care that external search engines don't index it.

derek_foreal 3 hours ago | parent | prev | next [-]

Unfortunately the comments are still used by email developers having to code for Outlook

hk__2 3 hours ago | parent | prev | next [-]

> The Protocol for Web Description Resources (POWDER) succeeded PICS but was also unsuccessful in its intentions

At least they were quite inspired for the naming.

LoganDark 7 hours ago | parent | prev | next [-]

Love the ruby tags on Chinese text!!

rhdunn 5 hours ago | parent | next [-]

Ruby tags apply to other scripts as well like Japanese and Korean. See https://www.w3.org/TR/css-ruby-1/.

voidUpdate 4 hours ago | parent | prev | next [-]

can they be applied to any text? might be useful if you have a hard to pronounce english word

robin_reala 4 hours ago | parent [-]

I’ve used them on Latin before.

OuterVale 5 hours ago | parent | prev [-]

I use them whenever I have an excuse!

BorisMelnik 2 hours ago | parent | prev | next [-]

<blink>blink</blink>

werdnapk 2 hours ago | parent | prev | next [-]

Unexpected ending.

RobotToaster 6 hours ago | parent | prev | next [-]

GeoURLs seem like they would still be useful today.

jszymborski 3 hours ago | parent | next [-]

It could be cool! Folks could use hCards rather than ICBM for that.

https://microformats.org/wiki/h-card

kijin 5 hours ago | parent | prev [-]

I hope they support drones these days. ICBMs are too expensive and can't hit your coordinates as accurately.

netol 5 hours ago | parent | prev | next [-]

About Twitter Embeds:

> These meta tags (and some other, less frequently used ones) were used on Twitter when generating link embeds. However, the documentation and card validator are no longer accessible (previously at https://dev.twitter.com/cards/getting-started and https://cards-dev.twitter.com/validator respectively). X falls back to the widely respected Open Graph meta tags, making the Twitter-specific declarations largely useless. They should be removed in favour of Open Graph tags. Further, they should be removed because X is an awful site with poor moderation that is owned by a man who publicly performed a Nazi Sieg Heil salute and has directly contributed to the rise of fascism in the United States of America and globally, among other horrors.

Ok but I believe `twitter:card` has no OG equivalent and still works?

tosti 4 hours ago | parent [-]

Well, that escalated quickly. If my client wants Twitter tags, I'll write those Twitter tags. If my client wants dancing hamsters, I'll add those dancing hamsters. I don't care who Elon Musk is and what he did. I don't know the guy, but I do know my wife and family and they want food on the table.

Tepix 4 hours ago | parent [-]

Luckily, some people have enough money to be able to afford ethical inaction.

tosti 3 hours ago | parent [-]

Good for them.

DonHopkins 44 minutes ago | parent [-]

It's so refreshing to see courageous people bravely standing their ground who don't believe Heiling Hitler on international TV and publically humiliating and abusing their trans daughter online is a bridge too far. It's so unfair to criticize anyone for doing something you'd do too if given the platform and opportunity. Once you disown and kick your own child out of the street instead of accepting them for who they are, you'll have lower grocery bills just like you voted for.

deanebarker 4 hours ago | parent | prev | next [-]

I thought PICS was a well-designed framework. I was disappointed when it didn't take off.

lapcat 5 hours ago | parent | prev | next [-]

I would add this:

  <meta name="viewport" content="width=device-width, initial-scale=1">
All you need is initial-scale=1, not width=device-width, which is redundant.

"You do not need to set every viewport property. If only a subset of the properties are set, then Safari on iOS infers the other values. For example, if you set the scale to 1.0, Safari assumes the width is device-width in portrait and device-height in landscape orientation." https://developer.apple.com/library/archive/documentation/Ap...

I've confirmed the behavior in testing.

phil-pickering 4 hours ago | parent | next [-]

The latest MDN recommendation is to use only width=device-width, with initial-scale being mostly redundant.

Source: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/...

netol 5 hours ago | parent | prev [-]

This may be Safari-specific? Google recommends setting both: https://developer.chrome.com/docs/lighthouse/best-practices/...

OuterVale 5 hours ago | parent [-]

You don't need both, but you should have the width set. From that page:

> A page fails the audit unless all of these conditions are met:

> - The document's <head> contains a <meta name="viewport"> tag.

> - The viewport meta tag contains a content attribute.

> - The content attribute's value includes the text width=.

I researched and tested this extensively the other day. `<meta name="viewport" content="width=device-width">` is all you need. https://vale.rocks/micros/20260902-1350

lapcat 5 hours ago | parent [-]

> I researched and tested this extensively the other day. `<meta name="viewport" content="width=device-width">` is all you need.

This is incorrect. Try adding an <img> that's wider than the device width. Then the whole page gets zoomed and the text unreadably small.

OuterVale 4 hours ago | parent [-]

The same will happen regardless in the case of content extending beyond the width of the viewport. With `initial-scale=1` it'll be a horizontal overflow, without it'll zoom out. I argue that the latter is preferable (https://vale.rocks/micros/20260908-1315) but either way should never reach users due to the usability fails and major accessibility issues.

lapcat 4 hours ago | parent [-]

> I argue that the latter is preferable

I disagree vehemently. I couldn't disagree more. The text has to be readable. If you force the reader to zoom in order to read the text, your website is fundamentally broken.

Moreover, neither of these considerations apply to images: "you risk having content off-screen which cannot be focused by a keyboard" "A user is extremely unlikely to think to scroll horizontally to see the rest of a document"

"There is even great president for it with documents on the web" Typo: precedent.

> either way should never reach users

This seems practically unavoidable with images, especially screenshots for example. Device widths vary, image widths vary. There is no magical image width that fits every device width, unless the image is very narrow. Moreover, I try to avoid JavaScript altogether when possible, so I don't want custom JS image viewers all over the place.

2d8a875f-39a2-4 4 hours ago | parent | prev [-]

oh god, so many hacks, so many hacks

::facepalm emoji::