Computer Programming

Hi humans,

So i’m taking an HTML course at college and well, i’m not the teacher’s pet.

I have a few projects that I can use input on, they’re very short but just need assistance in being able to link pictures to documents and create my own webpage.

In return, I will send you HD picture on instagrammable food. Thanks.

Re: Computer Programming

HTML? What are you having trouble with?

Re: Computer Programming

I have to link pictures on a document put dont know how to, this is what I got so far:



some_text

Re: Computer Programming

Put your image file where you html file is then try this. Assuming your image file name is myimage.jpg.




<html>

<head>
<title>This is my picture page</title>
</head>

<body>

<h1>Here is my Image</h1>
<br/>
<img src="myimage.jpg" />

</body>

</html>




Re: Computer Programming

HTML is easy. Let us know what you need help with exactly or may be post the project description.

Re: Computer Programming




<html>
   <body>
      <a href="[target url]"><img src="[" /></a>
   </body>
</html>


will let you click a picture to take you to the target url.

However, if you just want the picture to show up on the page, you need to close your tags, particularly html and body. You close the image tag like this:




<img src="url of image]" **/**>



](" />)

Re: Computer Programming

this is a part of the assignment

Re: Computer Programming

That’s a bit hard to read. Could you magnify it?

Re: Computer Programming

I tried doing that changing the file name to what it is…didn’t go through. Help me with your brains.

Re: Computer Programming

hi, fixed it!

Re: Computer Programming

That's easy.

Someimages.html will have something like this:



<html>
   <head>
     [whatever you put in the header]
   </head>
   <body>
      <img src="[image1 url]" />
      <img src="[image2 url]" />
      <img src="[image3 url]" />

      <br/>
      <a href="index.html">Homepage</a>


   </body>
</html>


index.html:



<html>
   <head>
     [whatever you put in the header]
   </head>
   <body>


      [whatever else you have in the body]

      <a href="someImages.html">Some Images</a>


   </body>
</html>


Re: Computer Programming

So how would I link the two ?

Re: Computer Programming

You’ve grown up so fast. :hinna:

Re: Computer Programming

thanks for the help you have given me. not](http://www.paklinks.com/gs/usertag.php?do=list&action=hash&hash=not)

Re: Computer Programming

Where you see , those are the links. So each page has a link to the other.

Re: Computer Programming

Oya why are you posting all your assignments here. Go read books and come back if you are really stuck.

Computer Programming

We do many bad stuff on GS but cheating is a no no.

Now don’t ask wut is allowed then :smokin:

Re: Computer Programming

Sorry if I am pontificating. But this is the time to learn; if you let others do your assignments you will never be able to learn this again.tt

Re: Computer Programming

I agree. You have to start something and we can help you but we cant be doing your homework for you.