We make webpages with many different tags. For example, to add an image we'll need to use the img tag.

<html lang="en">
<head>
  <style>body { text-align: center; background-color: white; margin: 0px; } #profile_picture { height: 120px; width: 120px; border: 3px; border-style: solid; border-color: white; border-radius: 4px; box-shadow: 0px 0px 4px 1px lightGray; }</style>
</head>
<body>
  <img id ="profile_picture" src="https://images.getmimo.com/images/cb9c565c-41c4-4c2e-9447-2a6eaf6556d7"/>
  <h1>Hello, World!</h1>
</body>
</html>
]]>

See that? We can use img to add images to our webpage. We'll learn how to access these images soon enough!