Webs Images

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ste6106
    DK Veteran
    • Mar 2009
    • 444

    #1

    Webs Images

    Reet, quick one, im trying to do a website from scratch by writing html codes etc and i now want to add an image, how do i add an image from my lappy, do I have to upload them to a host first such as Image shack or alike then use the path to them?
    Life is a party and parties arent meant to last.
  • opsmonkey
    V.I.P. Member
    • Nov 2008
    • 5379

    #2
    Originally posted by ste6106
    Reet, quick one, im trying to do a website from scratch by writing html codes etc and i now want to add an image, how do i add an image from my lappy, do I have to upload them to a host first such as Image shack or alike then use the path to them?
    yep upload em to imageshack or photobucket then put the image address in between the [IMG] and [/IMG]

    have you seen this.. i use it all the time.. you lay your pages out how you want and you can view in HTML source

    Nvu Web Authoring Software

    Comment

    • ste6106
      DK Veteran
      • Mar 2009
      • 444

      #3
      Cheers for that and I weill ave a good look at the site .

      Quite new to all this and want to learn how to write html before getting involved at a higher level, im in the crawling stage as yet though
      Life is a party and parties arent meant to last.

      Comment

      • chroma
        V.I.P. Member
        • Feb 2009
        • 1976

        #4
        Just upload
        Code:
        <html>
        <body>
        
        <h1>images on a webpage</h1>
        
        <!--An image uploaded to the root of the webserver displayed on a paragraph-->
        <p>
        An image involving goats:
        <img src="~~~~.jpg"
        width="320" height="600">
        </p>
        
        <!--An image uploaded to a folder called images on the web server-->
        <img src="images/banana.png" width="200" height="200">
        
        </body>
        </html>
        make sense?
        just upload them directly to your webhost, this tidies up code and makes backups easier as you can just mirror the lot instead of having to spider out into a number of different sites.

        At home just make a folder like C:\webimage\ and then just use that like:
        Code:
        <img src="C:\webimage\test.jpg width="640" height="480">
        This means you can rapidly test things before deploying them to the public, just use a macro to change "C:\webimage\" to whatever directory you will use online once youve finished with all your html pages.
        This will save you having to manualy edit everything before releasing
        He who laughs last thinks slowest.

        Comment

        • ste6106
          DK Veteran
          • Mar 2009
          • 444

          #5
          Cheers for that Chroma, the ~~~~.jpeg idnt appear though

          It sort of made sense it was the c:\ file i need to set up before I upload them to the host server it did actually make sense which is the scary thing, not crystal clear but clear enough, thanks
          Life is a party and parties arent meant to last.

          Comment

          • ste6106
            DK Veteran
            • Mar 2009
            • 444

            #6
            Im struggling to create a folder c:\\ im not sure how to create it and how to transfer images from my album on my laptop to the correct img src ;(
            Life is a party and parties arent meant to last.

            Comment

            • ste6106
              DK Veteran
              • Mar 2009
              • 444

              #7
              well i'll got our house ive done it, it works with internet explorer but not when im using firefox anyone know why?
              Life is a party and parties arent meant to last.

              Comment

              Working...