How To Insert An Image Into A Post
In this article you will learn how to insert an image into a post quickly and easily. Read this short article that teaches you how to insert an image into a post and in less than five minutes you will be adding images to your own blog posts.
Inserting an image into a post is very easy to do and is an excellent example of how simple working with HTML is. Ultimately, it is a great idea for all bloggers to learn HTML. However, in this article I will teach you how to insert an image into a post using basic HTML commands.
The image above that appears in this post is Google’s graphical logo. If you right click on the image and then click Properties you will see a section called Address (URL). The Address or URL is the location where the image resides on a web server computer. In this case the address or URL for Google’s graphical logo is:
http://www.google.com/images/logo_sm.gif
This is also referred to as the source (src).
In order to insert an image into a post you must use these HTML commands:
<img src=
The <img src= command means <img (image) src= (where is the source of the time, or the image address or url)
img stands for image
src stands for source (the address or url of the image).
So in our example using Google’s graphic our HTML code looks like this:
<img src=”http://google.com/images/logo_sm.gif”>
Popularity: 1% [?]
1 comment
[...] Two days ago, I published an article titled, ” How To Insert An Image Into A Post “. If you don’t know how to do that, then I want to encourage you to read that very short and easy to understand article first before reading this article. In this article you will learn how to take an image that you inserted into your post and hyperlink it to a web page. Just like inserting an image into a post, linking an image to another page is also very simple and easy to do. [...]
Leave a Comment