1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Can I improve with HTML?

Discussion in 'HTML & Website Design' started by rabi_nawaz, Aug 2, 2012.

  1. #1
    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.
     
    rabi_nawaz, Aug 2, 2012 IP
  2. quotemeremovals

    quotemeremovals Peon

    Messages:
    19
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    i can create new website using html language and easy to use html. i can learn more.
     
    quotemeremovals, Aug 2, 2012 IP
  3. JT12

    JT12 Banned

    Messages:
    4
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You can use an img tag.

    
    
    <html>
    <img src="images/image1.jpg">
    </html>
    
    
    Code (markup):
    This will get you started by displaying the image.
     
    JT12, Aug 2, 2012 IP
  4. Alejandro131

    Alejandro131 Greenhorn

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    3
    Trophy Points:
    21
    #4
    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.
     
    Alejandro131, Aug 2, 2012 IP
  5. jackshobs

    jackshobs Peon

    Messages:
    8
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    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.
     
    jackshobs, Aug 4, 2012 IP
  6. quotemeremovals

    quotemeremovals Peon

    Messages:
    19
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    <img src="pulpit.jpg" alt="Pulpit rock" width="304" height="228" />image link
    <link rel="stylesheet" type="text/css" href="theme.css" />text link
     
    quotemeremovals, Aug 6, 2012 IP