JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <title>Semantic elements</title>
</head>

<body>
  <header>
    <h1>
      Ja sam header
    </h1>

    <nav>
      <h2>Navigacija:</h2>
      Link 1 | Link 2
    </nav>
  </header>

  <main>
    <section>
      <h2>Section</h2>
      <article>
        <h3>Hogwarts</h3>
        <blockqoute cite="https://en.wikipedia.org/wiki/Hogwarts">
          Hogwarts School of Witchcraft and Wizardry (/ˈhɒɡwɔːrts/) is a fictional British boarding school of magic for students aged eleven to eighteen, and is the primary setting for the first six books in J. K. Rowling's Harry Potter series and serves as a major setting in the Wizarding World universe.
        </blockqoute>
      </article>
    </section>
  </main>

  <footer>
    <h3>Footer</h3>
    Link 1 | Link 2
  </footer>
</body>

</html>