How to Convert Pictures to HTML on Ubuntu Karmic
If you want to display images on the Internet, you must use a hypertext markup language (HTML) page. HTML pages are files containing coding that render a Web page. So if you want to post a picture to a Web page you don't convert it, but simply include it with the correct tag. Ubuntu Karmic includes a basic text editor that facilitates HTML pages. This will help you build a very basic HTML page.
Instructions
-
-
1
Click "Applications," "Accessories" and "Text Editor."
-
2
Type the following basic HTML code structure:
<html>
<head>My Website</head>
<body>
<img src="http://mysite.com/image1.jpg">
<img src="http://mysite.com/image2.jpg">
<img src="http://mysite.com/image3.jpg">
</body>
</html>
-
-
3
Replace each "mysite.com/image1.jpg" with the path to your images.
-
4
Click "File," then "Save As." Choose a location for your file to be saved and name it "website.html" (without quotes).
-
1