개발언어/HTML, CSS

HTML 간단히 살펴보기

Roxylife 2021. 9. 8. 12:00
<!DOCTYPE html>
<html lang="KO">
  <head>
    <link
      rel="shortcut icon"
      sizes="16x16 32x32 64x64"
      href="https://noomadcoders.co/m.png"
    />
    <title>Home - My first website.</title>
    <meta charset="UTF-8" />
    <meta name="description" content="This is my website" />
  </head>
  <body>
    <form>
      <label for="website">Website</label>
      <input id="website" required placeholder="Fist Name" type="url" />
      <input type="submit" value="Create Account" />
    </form>

    <header>
      <h1>The Nico Times</h1>
    </header>
    <main>
      <address>123 Road Altavista</address>
    </main>
    <footer>
    &copy; 2020 N.C
    </footer>
  </body>
</html>

HTML Element MDN https://developer.mozilla.org/ko/docs/Web/HTML/Element 생활화하자!!!