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.
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:
<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>