Website

Messages
1,210
Reaction score
2,191
Points
620
Location
Sweden
I would like to know how to make an image link, aswell as making the text be in the middle of the screen.

(html)
 
Try using https://www.codecademy.com/learn/web to learn HTML and CSS. It's a much better place especially seeing you're a beginner, anyway:


To use an image with a link(redirects upon click)

<a href="http://website.here>
<img border="0" alt="title on hover" src="imgagegif" width="100" height="100">
</a>


What you want to center, you put in between <center> tags

here's two examples:


I center only the image:

HTML:
<!DOCTYPE html>
<html>
<body>

<h2>admin to me rdm</h2>
<center>
<center>
</center>


</body>
</html>


here i center the entire page:

HTML:
<!DOCTYPE html>
<html>
<center>
<body>

<h2>admin to me rdm</h2>
<center>
<a href="http://website.here>
<img border="0" alt="title on hover" src="imgagegif" width="100" height="100">
</a>
</center>


</body>
</center>
</html>
 
Back
Top