programming-examples/html/Basics/Make a hyperlink of an image.html
2019-11-18 14:44:36 +01:00

9 lines
269 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of linking images</title>
</head>
<body>
<p><a href="../images/ballons.jpg"><img src="../images/ballons-thumb.jpg" alt="Hot Air Ballons"></a></p>
</body>
</html>