محتوى الدورة
Learn CSS In Arabic 2021
وصف الدرس

ال Code الموجود في الدرس

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>CSS</title>
    <link rel="stylesheet" href="css/master.css" />
    <link rel="stylesheet" href="css/library.css" />
    <link rel="stylesheet" href="css/rtl.css" />
  </head>
  <body>
    <div>Div</div>
    <div class="_test">Div</div>
    <div id="test">Div</div>
  </body>
</html>
._test {
  color: red;
}
.user-test {
  color: red;
}