How to convert jpeg to HTML?

Hi
If I am downloading jpg from websites then how can I edit & create HTML codes?Can jpg can be converted to HTML files?

By all means it is not called Converting JPEG into HTML. Its adding html codes to make it easy to attach or use an Image on websites. To do that you can either code the image and make it into a html file or use some software. Dreamviewer and some online tools can help you.
 
First you should create a PSD(Photoshop Design) file with proper layers, colors, fonts etc., Then you can easily convert it by seeing PSD file.

Yeah, i agree with you, We have to create a Photoshop website template then make it jpeg send it to client, once he approves our design then we can start HTML, CSS coding part, that is the right approach.
 
you can't. a HTML file is a text file that you can create with any text editor and saving it with a name like "mypage.htm"
however, you can display an image in a html file.
the simplest html file to display an image should contain the following
(replace "mypicture.jpg" with the name of your image file)

<HTML>

<HEAD>
<TITLE></TITLE>
</HEAD>

<BODY>
<IMG SRC="mypicture.jpg">
</BODY>

</HTML>
 
The expression "JPEG" is an acronym for the Joint Photographic Experts Group which made the standard

JPEG/Exif is the most widely recognized picture configuration utilized by advanced cameras and other photographic picture catch gadgets; alongside JPEG/JFIF, it is the most well-known organization for putting away and transmitting photographic pictures on the World Wide Web.
 
Back
Top