HTML Basics

  1. HMTL Boilerplate
  2. Links and Images
    1. Links
    2. Images

HMTL Boilerplate

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>N1&reg;</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

  </head>

  <body>
    <h1>Hello World!</h1>
  </body>
</html>
<a href="https://www.theodinproject.com/about" target="_blank" rel="noopener noreferrer">About The Odin Project</a>

Images

<img src="https://www.theodinproject.com/mstile-310x310.png" alt="The Odin Project Logo" height="310" width="310">

© 2024. Mockingjays Are Just Curious.