Everyone loves to share images online! With the <img>
tag, you can put images in your own web pages!
<!DOCTYPE html>
<html>
<body>
<img src="umd_logo.png" height="100" width="100" >
</body>
</html>
Combine links and images to turn your images into links!
<!DOCTYPE html>
<html>
<body>
<h3>Click me!</h3>
<a href="http://umd.edu">
<img src="umd_logo.png" height="100" width="100">
</a>
</body>
</html>