Adding pictures to your blog.
In order to add a picture to your blog post, you need to have a separate host for the image. That means that the picture cannot be uploaded to blogger and saved in Blogger's server. You need to upload it elsewhere. Or if the image can be found somewhere else on the web, you can link to it.
This is what you do. You need to work with html tags.
To include a picture, get its direct url. That means "http://www.whatever.com/images/picture.jpg". It will not work if you give a html file.
Then put it in a <img> around it. Which will give you:
<img src="http://www.whatever.com/images/picture.jpg">
"src" specifies the source, that is where the image is from. If you want to add a border, include border="1px" (or however thick you want the border in pixels) into the tag. That is:
<img src="http://www.whatever.com/images/picture.jpg" border="1px">
You can also align the image. Just add align="left" (or "right" or "center" into the tag. Note that you must use the format that is specified.
Hope this helps.
This is what you do. You need to work with html tags.
To include a picture, get its direct url. That means "http://www.whatever.com/images/picture.jpg". It will not work if you give a html file.
Then put it in a <img> around it. Which will give you:
<img src="http://www.whatever.com/images/picture.jpg">
"src" specifies the source, that is where the image is from. If you want to add a border, include border="1px" (or however thick you want the border in pixels) into the tag. That is:
<img src="http://www.whatever.com/images/picture.jpg" border="1px">
You can also align the image. Just add align="left" (or "right" or "center" into the tag. Note that you must use the format that is specified.
Hope this helps.
0 Comments:
Post a Comment
<< Home