Belajar CSS lewat Codepen.io – Tingkat Dasar

1. Inline CSS (di dalam tag HTML)

<p style="color: red;">Teks ini berwarna merah</p>

2. Internal CSS (di dalam tag <style> di <head>)

<head>
  <style>
    p {
      color: blue;
    }
  </style>
</head>

3. Eksternal CSS (file .css terpisah – belum digunakan di CodePen dasar)

<style>
  h1 {
    color: darkgreen;
    font-family: Arial;
    font-size: 32px;
  }

  p {
    color: gray;
    font-size: 16px;
    text-align: justify;
  }
</style>
0% Complete