Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

9 Answers

up vote 48 down vote accepted

The short answer

There is none. They are exactly the same.

The long answer

Both .htm and .html are exactly the same and will work in the same way. The choice is down to personal preference, providing you’re consistent with your file naming you won’t have a problem with either.

Depending on the configuration of the web server, one of the file types will take precedence over the other. This should not be an issue since it’s unlikely that you’ll have both index.htm and index.html sitting in the same folder.

We always use the shorter .htm for our file names since file extensions are typically 3 characters long.

AND MORE ON :http://www.sightspecific.com/~mosh/WWW_FAQ/ext.html

share|improve this answer

Neither!

If you're asking; "what would a website visitor rather type, htm or html" - it's much better to give them a nice descriptive URL with no extension. If they get used to going to yoursite/contact.html and you change it to yoursite/contact.php you've broken that link. If you use yoursite/contact/ then there's no problem when you switch technology.

share|improve this answer
11  
+1. I always feel like I've traveled back in time when I see resources ending in .html on a modern website. – Grant Wagner Jul 22 '09 at 16:32
1  
That's quite a good idea. Still, isn't there a distinction between the storage and the url? Shouldn't that be the server's job? – xtofl Jul 24 '09 at 15:08
1  
It's up to you how you achive yoursite/contact/ - I use mod_rewrite on Apache or URL routing on Windows. Some people use folder structures, which isn't ideal - but can still easily be replaced with either mod_rewrite or URL routing later. – Steve Fenton Jul 27 '09 at 7:47
Yes you should rewrite the url, but you still have to have something behind it. Anyway, +1. – jeffamaphone Aug 10 '09 at 18:43
1  
Why the slash at the end? yoursite/contact is fine. – Andrew Aug 29 '12 at 10:09
show 1 more comment

same thing.. makes no difference at all... htm was used in the days where only 3 letter extensions were common.

share|improve this answer

.html - DOS has been dead for a long time. But it doesn't really make much difference in the end.

share|improve this answer

If you plan on putting the files on a machine supporting only 8.3 naming convention, you should limit the extension to 3 characters.

Otherwise, better choose the more descriptive .html version.

share|improve this answer
2  
Then should we be appending 'l' for language to all source files? ;) – al7ut9ov8my4wopt5ur6ais5 Jul 24 '09 at 14:45
11  
That's fine until someone makes a language called Ana. – dan04 Jan 20 '11 at 6:54
^^ That made me LOL! – DarkCthulhu Jan 12 at 3:53

.html always for new files. .htm is a throwback to dos days.

share|improve this answer

Since nowadays, computers support widely any length as file type, the choice is now only personal. Back in the early days of Windows where only 3 letters where supported, you had to use .htm, but not anymore.

share|improve this answer
3  
you mean, "back in the early days of Windows where only 3 letters (in extensions) were supported". Unix and Mac OS (even pre-OS X) never had those limitations; we were using .html extensions from the very start. – Val Jul 22 '09 at 23:49

It's the same in terms of functionality and support. (most OS recognize both, most Search Engines recognize both)

For my everyday use, I choose .htm because it's shorter to type by 25%.

share|improve this answer
So you're willing to not include a DOCTYPE? – Hello71 Aug 23 '10 at 21:06
1  
@Hello71: i don't get it – Wadih M. Aug 24 '10 at 17:50

I have a site that is all .htm and was told by a computer "know it all" to change to .html because it would help google rank.. saved time and $

share|improve this answer
1  
That's a terrible suggestion. It doesn't matter to Google whether it's .htm or .html. On the contrary, changing all your links does hurt your SEO performance in addition to breaking all ingoing links, thus rendering your linkbuilding worthless. – Nix Aug 28 '12 at 10:39
just wasted time if you do that – PatomaS Oct 20 '12 at 4:48
False. For Google is the same if you use .htm, .html or .php ! – MultiformeIngegno Mar 29 at 2:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.