Bine ai venit la cursul de CSS!

Acesta este un paragraf normal.

Acesta este un paragraf cu clasa accent, are fundal galben.


Codul sursă:

<!DOCTYPE html>
<html lang="ro">
<head>
  <meta charset="UTF-8">
  <title>Exemplu CSS intern</title>
  <style>
    body {
      font-family: Calibri;
    }
    h1 {
      color: darkred;
    }
    .accent {
      background-color: yellow;
    }
    #footer {
      font-size: 12px;
      text-align: center;
    }
  </style>
</head>
<body>

  <h1>Bine ai venit la cursul de CSS!</h1>

  <p>Acesta este un paragraf normal.</p>

  <p class="accent">Acesta este un paragraf cu clasa <code>accent</code>, are fundal galben.</p>

  <div id="footer">
    &copy; 2025 – Lecție demonstrativă CSS
  </div>

</body>
</html>