programming-examples/html/_Basics/Creating links to other HTML documents or Web resources.html
2019-11-15 12:59:38 +01:00

12 lines
432 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<meta charset="UTF-8">
<title>Example of HTML Links</title>
</head>
<body>
<p><a href="http://www.tutorialrepublic.com/">Tutorial Republic</a></p>
<p><a href="../images/kites.jpg"><img src="../images/kites-thumb.jpg" alt="kites"></a></p>
<p><a href="http://www.google.com/" target="_blank">Google Search</a></p>
</body>
</html>