HTML Tutorials


Images

Everyone loves to share images online! With the <img> tag, you can put images in your own web pages!



Code

<!DOCTYPE html>
<html>

  <body>
    <img src="umd_logo.png" height="100" width="100" >
  </body>
</html>

Result


Combine links and images to turn your images into links!

Code

<!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>

Result

Click me!