Sunday 7 March 2021

HTML TUT-2 How to Add Link and Images

 How To Add Links And Images

Links And Images

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Links and images</title>
</head>
<body>
    <a href="http://Google.com"target="_blank">Go to the google</a><br>
    <a href="http://facebook.com"target="_blank">Go to the facebook</a><br>
    <a href="http://youtube.com"target="_blank">Go to the youtube</a><br>
    <a href="http://linkedin.com"target="_blank">Go to the linkedin</a><br>
    <a href="/tut6.html"target="_blank">Go to the Tutorials 6 </a><br>
    <a href="/Upendra.html"target="_blank">Go to the upendra Tutorials 6 </a><br>
<!-- if image is not shown alt gives an inf abt  -->
<img src="https://source.unsplash.com/user/erondu/500x500" alt="Remote image" ><br>
<img src="Upendra.html" alt="Error loading in the images"><br>
</body>
</html>


No comments:

Python if / else

 Python if / else a1 = int ( input (" Enter the number: \n ")) a2 = int ( input (" Enter the number: \n ")) a3 = int ( i...