Does file extensions matter for browsers?
browser, html, image
Solution
No, what matters is the Content-Type header, which gets served in the HTTP response.
Problem
Does it matter if i name my pictures "test.jpg" or just "test" for the viewers? ``` <img src="test.jpg" /> <img src="test" /> ``` Both works in all browsers i know but is there any point in using the right file extension?