Need Help With Html

  1. #1
    AJSiv is offline Newbie

    Question Need Help With Html

    I need help with html, i dont know how to do thumbnails, or do clicking an image so it goes bigger.
    Also i need help to do a subsciption page, so people can logg in on my website,please post back soon
    AJSiv


  2. #2
    C0oLl2iCeF0o is offline Elite Member
    <a href="whateverimagesfolder/whatever.gif"><img src="whateverimagesfolder/whatever.gif" width=50 length=50></a>
    Its been a while since I did webpages, so if somethings wrong please correct me. [be sure to edit the image link and to the desired size]
    Last edited by C0oLl2iCeF0o; 13-08-2004 at 03:32 AM.

  3. #3
    AJSiv is offline Newbie
    I dont get what u mean sorry,is there a code i can copy for a member thing, or is there a code for thumbnails

  4. #4
    C0oLl2iCeF0o is offline Elite Member
    the code i posted was for the thumbnails, the code for the first bracket is the link to the actual picture link, the second bracket was also the same picture link so the page knows what picture to display and the length/width is what size you want your thumbnail to be. just copy and paste my code and edit as needed

  5. #5
    My Design is offline Newbie
    Hi there guys,

    Okay I'm assuming you know nothing about html

    STEP 1 - Save the picture you want to use as a thumbnail. (for example: C:\image.jpg )

    STEP 2 - Copy the code below into NotePad then save into C:\test.html

    STEP 3 - Open test.html in a browser

    Here's the code:
    Code:
    <html>
    <head>
    <title>Thumbnail images</title>
    </head>
    
    <body>
    <a href="image.jpg"><img src="image.jpg" width="50" height="50" border="0"></a> 
    </body>
    </html>
    Ajsiv - Online forms (ie subscription pages) require you to know abit of ASP.
    Last edited by My Design; 13-08-2004 at 02:53 AM.

  6. #6
    AJSiv is offline Newbie
    it dosnt work, i tryed it
    oh and COol how do i remove the blue box around the image

  7. #7
    C0oLl2iCeF0o is offline Elite Member
    Tackle the Web with $5.99 .COM's from Go Daddy!
    Code:
    <a href="image.jpg"><img src="image.jpg" width="50" height="50" border="0"></a>
    or if your referring to the default blue box, i dont think its removable (i am like only 50% sure about this) because it signals a link

+ Reply to Thread