Single File HTML

rholbrook

Well-Known Member
Location
Kaysville, Ut
I have a picture that I need converted to a single file HTML. I have no idea how to do it. I know with all the of the intelligence on RME that many of you can do it in your sleep.

Is there a an easy free or inexpensive program out there that even I can use to do this? I will need to do it regularly.

Thanks
 

Caleb

Well-Known Member
Location
Riverton
Well, an image can't be an html file. An html file can contain a link to an image though. Simply put:

<html>
<head>
</head>
<body>
<img src="image path/url" height="xxx" width="xxx">
</body>
</html>

You can leave the height and width out if you want to just display it in the full-size of what it is. Put that "code" into a file, name it anythingyouwant.html, load it to a web server and serve to your heart's content. :)
 
Last edited:

Caleb

Well-Known Member
Location
Riverton
I guess we should ask, why do you need it as an html file? Given that, I bet we could give you a better answer.
 
Top