Sunday, November 28, 2021

how we insert link and image in HTML

<!DOCTYPE html>

<html>

<head>

<title>links and images</title>

</head>

<body>

<button> <!--button tag used for insert a button-->

<a href="https://hrcoding.blogspot.com" target="-blank" style="text-decoration: none;" title="click to visit">HR programming knowledge</a>

</button>

<!--this is used for insert link in html-->

<img src="asm.jpg" alt="assembly language"> 

<!--this is used for insert image in html-->

</body>

</html> 


output:



No comments:

Post a Comment