i have pictures of a Trip with my class fellows. i want to post them on my blog http://rabinawaz.blogspot.com/. how i post them with HTML coding. Can anyone help me.
You can use an img tag. <html> <img src="images/image1.jpg"> </html> Code (markup): This will get you started by displaying the image.
Besides using a plain img tag with a src attribute, you should add width and height as well (unless you've already made your images small enough as to not interfere with the blog's layout), because there is a tendency with blogs having too large images to ruin its template and everything gets messed up in the browser rendering process. Depending on your blog template you can tweak the values, but 300-600 px seem acceptable depending on whether you have 1 or 2 columns for displaying content. <img src="photo.jpg" alt="Photo of me and my friends" height="300" width="300" /> Code (markup): You should also consider whether or not you want to use the alt tag which is just a text that will be shown when you hover over the image or it doesn't get rendered by the browser, so that people can know what is actually in the photo.
The fix is pretty simple though. You just have to navigate back to the HTML part of your editor. Also, Many bloggers rely on the toolbar's "kitchen sink" or WYSIWYG button (What You See Is What You Get). Javascript and Flash might be also used in blogs, depending on the designer.
<img src="pulpit.jpg" alt="Pulpit rock" width="304" height="228" />image link <link rel="stylesheet" type="text/css" href="theme.css" />text link