Philip Messages 1,210 Reaction score 2,191 Points 620 Location Sweden Dec 15, 2016 #1 I would like to know how to make an image link, aswell as making the text be in the middle of the screen. (html)
I would like to know how to make an image link, aswell as making the text be in the middle of the screen. (html)
Smeris Messages 2,703 Reaction score 4,350 Points 845 Dec 15, 2016 #2 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>
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>
Philip Messages 1,210 Reaction score 2,191 Points 620 Location Sweden Dec 15, 2016 Thread starter #3 thanks
MattIsMadForCod Messages 51 Reaction score 148 Points 315 Location Manchester, United Kingdom Dec 15, 2016 #4 http://www.w3schools.com/ - They've been around for years and have a step by step html guide. Recommend working your way through it!
http://www.w3schools.com/ - They've been around for years and have a step by step html guide. Recommend working your way through it!