~ characer to denote spaces in filenames (HTML)?

I had a question about displaying an image in an html document. Filenames with spaces won't display.

This works fine for me
<img src=http://www.test.com/test1.jpg>

These images don't show
<img src=http://www.test.com/test 2.jpg>

This doesn't work either
<img src=http://www.test.com/test~2.jpg>
Neither doe's this
<img src=http://www.test.com/test_2.jpg>
I have resolved this issue by writing it as

<img src="http://www.test.com/test%202.jpg">

Thank you for noting, but yes I did forget to add the quotations in my original post, thank you.
 
Back
Top