Results 1 to 14 of 14

Thread: Help with making web page (uploading pics)

  1. #1
    Ride
    vs calais eco

    Join Date
    Sep 2006
    Location
    Disney land!
    Posts
    1,113

    Default Help with making web page (uploading pics)

    G,day to all!
    Im in the middle of attempting *cough* to make a web page for my business, trouble is i don't have a clue as to how any of this stuff works Now i found a web site that's been very help full in making your own web page using note pad but i am having problems when it comes to putting pics up! Hers an example=
    The web site tells me in note pad to put this up=
    <body>
    <img src="chef.gif" width="130" height="101">
    </body>
    Now that image works on the page that i have made ect but when i try to put a different image up (one that i downloaded and saved) it wont display properly ( the outline of the pic is there but there is only a little broken box up in the top left corner) I think its because the image i have downloaded and save is a jpeg image and not a gif image?? any help would be great!

  2. #2
    Ride
    vs calais eco

    Join Date
    Sep 2006
    Location
    Disney land!
    Posts
    1,113

  3. #3
    azkwazere is offline Ahhh Yes, Ahhh Yes....
    Ride
    VP 5-SPD / 24-SPD Racer Hybrid

    Join Date
    May 2005
    Location
    .....SE Burbs
    Posts
    1,807

  4. #4
    Ride
    vs calais eco

    Join Date
    Sep 2006
    Location
    Disney land!
    Posts
    1,113

    Default

    Quote Originally Posted by azkwazere View Post
    Glad you got it sorted...

    On a side note: Learn CSS.

    aZk.
    cheers mate
    But whats CSS
    Im actually trying to figure out how to create a link, to no avail

  5. #5
    Tom_1569's Avatar
    Tom_1569 is offline Ecotech Power
    Ride
    VS Ute - Daily, VT - Spare, 80 Series - W/E Bus

    Join Date
    Nov 2006
    Location
    Gippsland - VIC
    Posts
    2,186

    Default

    Link:
    <a href="http://www.google.com.au/">TEXT HERE</a>

    Change the URL to the proper url, and the TEXT HERE to what text you want to link... hope that makes sense, sorry if it doesnt im very tired.
    Quote Originally Posted by alien View Post
    I have been hit by oil badly once while in Army uniform on a massive roundabout that doesn't exist anymore. Spun 180 degrees to face oncoming traffic.

  6. #6
    azkwazere is offline Ahhh Yes, Ahhh Yes....
    Ride
    VP 5-SPD / 24-SPD Racer Hybrid

    Join Date
    May 2005
    Location
    .....SE Burbs
    Posts
    1,807

    Default

    W3School is literally like the best resource for everything... (apart from the Java API)

    CSS = Cascading Style Sheets. Once you know CSS, your webpages will benfit like 10fold.

    Toms code is accurate... in regards to the link.

    aZk.

  7. #7
    Ride
    vs calais eco

    Join Date
    Sep 2006
    Location
    Disney land!
    Posts
    1,113

    Default

    Quote Originally Posted by Tom_1569 View Post
    Link:
    <a href="http://www.google.com.au/">TEXT HERE</a>

    Change the URL to the proper url, and the TEXT HERE to what text you want to link... hope that makes sense, sorry if it doesnt im very tired.
    Quote Originally Posted by azkwazere View Post
    W3School is literally like the best resource for everything... (apart from the Java API)

    CSS = Cascading Style Sheets. Once you know CSS, your webpages will benfit like 10fold.

    Toms code is accurate... in regards to the link.

    aZk.
    Cheers fellas for the help well i have a working link to yahoo now but what im wanting to do is make a link on my web page that takes people to pics of the stuff i build? so im thinking that i would have to create another web page??

  8. #8
    Ride
    VY SV8 HBD---mmmm LS1
    Simon Champion! On The Volley Champion! Shootin Hoops Champion! Batting Champ Champion!
    Join Date
    Dec 2005
    Location
    Western Suburbs
    Posts
    1,292

    Default

    lol i attempted to make my own got over it pretty quick wat program u using. i used blue voda i think it was called

  9. #9
    VZTHUNDER's Avatar
    VZTHUNDER is offline Enhanced Custom Tuned
    Ride
    VZ SS Thunder MY06

    Join Date
    Jan 2007
    Location
    SA
    Posts
    346

    Default

    dreamweaver is a very goot HTML / CSS tool if you wanna get right into it
    Quote Originally Posted by soop View Post
    Since we're talking sh*t here. Petrol. Petrol kills things good. You could even lite it.

  10. #10
    azkwazere is offline Ahhh Yes, Ahhh Yes....
    Ride
    VP 5-SPD / 24-SPD Racer Hybrid

    Join Date
    May 2005
    Location
    .....SE Burbs
    Posts
    1,807

    Default

    Quote Originally Posted by madvx6 View Post
    dreamweaver is a very goot HTML / CSS tool if you wanna get right into it
    i agree and disagree..

    1. I NEVER! and i repeat NEVER use programming aids which include dreamweaver and anyother program which does literally all the hard work for you.

    It makes you a very lasy programmer. Bad.

    2. Its good in terms of getting something half decent out quick..maninly in cvxvxvxvxvxvx(sp?)'s case.

    3. If you want to take a new task on, learn the entire language. Not every tag and its attributes but its past, use, limitations and syntax. There is more to programming than just knowing how to make stuff come up. There is links between elements and a flow your code should demonstrait.

    There is alot of rules to programming too... like how to set things out, what to use and when etc. These should be know!

    AS for your picture issue. You have a few options.. ill rank them from hardest to easiest.

    1. Make a PHP script to lookup the required pics and display them in a gallery by using xml.

    2. use a CSS build gallery page

    3. Use a flash gallery page

    4. Make a new page, upload pics to that and then link to the page..like this:

    Page1:

    <html>
    <head>
    <title>Page 1</title>
    </head>

    <body>
    <h1>This is the main page with a link to the other images page</h1>
    <br/>
    <a href="page2.html">Click Here to view my images</a>
    </body>
    </html>

    Page2:
    <html>
    <head>
    <title>Page 2</title>
    </head>

    <body>
    <img src="imagessrc.extension"></img>
    <img src="imagessrc.extension"></img>
    <img src="imagessrc.extension"></img>
    <!-- etc etc etc -->
    </body>
    </html>

    Thats a really basic description of what ya wanna achieve...

    aZk.

  11. #11
    Ride
    vs calais eco

    Join Date
    Sep 2006
    Location
    Disney land!
    Posts
    1,113

    Default

    Quote Originally Posted by Joey_19 View Post
    lol i attempted to make my own got over it pretty quick wat program u using. i used blue voda i think it was called
    I am just following this tutorial
    HTML Tutorial

    Quote Originally Posted by azkwazere View Post
    i agree and disagree..

    1. I NEVER! and i repeat NEVER use programming aids which include dreamweaver and anyother program which does literally all the hard work for you.

    It makes you a very lasy programmer. Bad.

    2. Its good in terms of getting something half decent out quick..maninly in cvxvxvxvxvxvx(sp?)'s case.

    3. If you want to take a new task on, learn the entire language. Not every tag and its attributes but its past, use, limitations and syntax. There is more to programming than just knowing how to make stuff come up. There is links between elements and a flow your code should demonstrait.

    There is alot of rules to programming too... like how to set things out, what to use and when etc. These should be know!

    AS for your picture issue. You have a few options.. ill rank them from hardest to easiest.

    1. Make a PHP script to lookup the required pics and display them in a gallery by using xml.

    2. use a CSS build gallery page

    3. Use a flash gallery page

    4. Make a new page, upload pics to that and then link to the page..like this:

    Page1:

    <html>
    <head>
    <title>Page 1</title>
    </head>

    <body>
    <h1>This is the main page with a link to the other images page</h1>
    <br/>
    <a href="page2.html">Click Here to view my images</a>
    </body>
    </html>

    Page2:
    <html>
    <head>
    <title>Page 2</title>
    </head>

    <body>
    <img src="imagessrc.extension"></img>
    <img src="imagessrc.extension"></img>
    <img src="imagessrc.extension"></img>
    <!-- etc etc etc -->
    </body>
    </html>

    Thats a really basic description of what ya wanna achieve...

    aZk.
    Well.....i understood some of that..?
    I also have 2 say that was an outstanding effort to write all that @ that time of night

  12. #12
    Ride
    A Pushie

    Join Date
    Mar 2006
    Location
    Cronulla, NSW
    Posts
    228

    Default

    Quote Originally Posted by azkwazere View Post
    Glad you got it sorted...

    On a side note: Learn CSS.

    aZk.
    Why add another level of complexity when just first getting your head around html?

    My advice would be forget about CSS, learn how HTML works first, then worry about styling (that can be achieved through strict use of html) later.

    HTML is easy after 2 or 3 weeks of working on it. If you're wanting to make a photo gallery however, just using html is one of the worst options out there to do it. PHP is the easiest option, but again that's adding another level of complexity that will probably do your head in at this stage

  13. #13
    Ride
    vs calais eco

    Join Date
    Sep 2006
    Location
    Disney land!
    Posts
    1,113

    Default

    Quote Originally Posted by ProphetVX View Post
    Why add another level of complexity when just first getting your head around html?

    My advice would be forget about CSS, learn how HTML works first, then worry about styling (that can be achieved through strict use of html) later.

    HTML is easy after 2 or 3 weeks of working on it. If you're wanting to make a photo gallery however, just using html is one of the worst options out there to do it. PHP is the easiest option, but again that's adding another level of complexity that will probably do your head in at this stage
    Yeah im getting the basics sorted @ the moment and hope to add some pics @ a later stage!

  14. #14
    Tom_1569's Avatar
    Tom_1569 is offline Ecotech Power
    Ride
    VS Ute - Daily, VT - Spare, 80 Series - W/E Bus

    Join Date
    Nov 2006
    Location
    Gippsland - VIC
    Posts
    2,186

    Default

    Yeah dont worry about PHP or CSS yet, focus on understanding HTML, and get a good grasp for it.
    Avoid using programs that do the code for, use notepad, its the correct way to learn.
    That way if you get a fault you can debug because you understand the code.
    Dreamweaver is an excellent program, and great for getting a job done quickly, but learn the basics first.
    If you need any help keep singing out.
    Quote Originally Posted by alien View Post
    I have been hit by oil badly once while in Army uniform on a massive roundabout that doesn't exist anymore. Spun 180 degrees to face oncoming traffic.

Similar Threads

  1. Introducing Ruby....... New pics now on Page 1
    By 1vngal in forum VN - VP - VG - VQ
    Replies: 293
    Last Post: 17-04-2010, 02:31 AM
  2. uploading a video
    By Goon in forum The Pub
    Replies: 2
    Last Post: 04-03-2007, 01:19 AM
  3. pics uploading??????????
    By jeff333 in forum General
    Replies: 1
    Last Post: 05-10-2005, 08:30 PM
  4. Topic numbers per page index page
    By jazza21 in forum Site Feedback / Site Problems
    Replies: 1
    Last Post: 29-03-2005, 06:54 PM
  5. Uploading Avatars.
    By Jaime in forum Site Feedback / Site Problems
    Replies: 2
    Last Post: 12-09-2004, 05:52 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71