CSS ﺕﺍﺮﻈﻧ


فهرست مطالب

    نمایش فهرست مطالب


ﺪﻨﻧﺍﻮﺗ ﯽﻣ ﺎﻣﺍ ،ﺪﻧﻮﺷ ﯽﻤﻧ ﻩﺩﺍﺩ ﺶﯾﺎﻤﻧ ﺮﮔﺭﻭﺮﻣ ﺭﺩ CSS ﺕﺍﺮﻈﻧ


CSS ﺕﺍﺮﻈﻧ

.ﺪﻨﮐ ﮏﻤﮐ ﺪﯿﻨﮐ ﺶﯾﺍﺮﯾﻭ ﯼﺮﮕﯾﺩ ﺦﯾﺭﺎﺗ ﺭﺩ ﺍﺭ ﻊﺒﻨﻣ ﺪﮐ ﻪﮐ ﯽﻧﺎﻣﺯ ﺭﺩ ﺖﺳﺍ ﻦﮑﻤﻣ ﻭ ﺩﻮﺷ ﯽﻣ ﻩ

.ﺪﻧﻮﺷ ﯽﻣ ﻪﺘﻓﺮﮔ ﻩﺪﯾﺩﺎﻧ ﺎﻫﺮﮔﺭﻭﺮﻣ ﻂﺳﻮﺗ ﺕﺍﺮﻈﻧ

:*/ code .ﺩﻮﺷﯽﻣ ﻢﺘﺧ ﺎﺑ ﻭ ﺩﻮﺷﯽﻣ ﻉﻭﺮﺷ

ﻝﺎﺜﻣ

 /* This is a single-line comment */
p
{
   
color: red;
}

→ ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ

<!DOCTYPE html>
<html>
<head>
<style>
/* This is a single-line comment */
p {
  color: red;
} 
</style>
</head>
<body>

<p>Hello World!</p>
<p>This paragraph is styled with CSS.</p>
<p>CSS comments are not shown in the output.</p>

</body>
</html>


:ﺪﯿﻨﮐ ﻪﻓﺎﺿﺍ ﺪﮐ ﺭﺩ ﺪﯿﻫﺍﻮﺧ ﯽﻣ ﻪﮐ ﺎﺠﮐ ﺮﻫ ﺭﺩ ﺍﺭ ﺩﻮﺧ ﺕﺍﺮﻈﻧ ﺪﯿﻧﺍﻮﺗ ﯽﻣ ﺎﻤﺷ

ﻝﺎﺜﻣ

   p
{
   
color: red; 
  /* Set text color to red */
}

→ ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ

<!DOCTYPE html>
<html>
<head>
<style>
p {
  color: red;  /* Set text color to red */
} 
</style>
</head>
<body>

<p>Hello World!</p>
<p>This paragraph is styled with CSS.</p>
<p>CSS comments are not shown in the output.</p>

</body>
</html>


ﺪﻧﻮﺷ ﻩﺩﺮﺘﺴﮔ ﺪﻨﻧﺍﻮﺗ ﯽﻣ ﻦﯿﻨﭽﻤﻫ ﺕﺍﺮﻈﻧ

ﻝﺎﺜﻣ

 /* This is
a multi-line
comment */

p
{
   
color: red;
}

→ ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ

<!DOCTYPE html>
<html>
<head>
<style>
/* This is
a multi-line
comment */

p {
  color: red;
} 
</style>
</head>
<body>

<p>Hello World!</p>
<p>This paragraph is styled with CSS.</p>
<p>CSS comments are not shown in the output.</p>

</body>
</html>




CSS ﻭ HTML ﺕﺍﺮﻈﻧ

ﺪﯿﻨﮐ ﻪﻓﺎﺿﺍ ﺩﻮﺧ HTML ﻊﺒﻨﻣ ﻪﺑ HTML ﺯﺍ ﻩﺩﺎﻔﺘﺳﺍ ﺎﺑ ﺍﺭ ﺩﻮﺧ ﺕﺍﺮﻈﻧ ﺪﯿﻧﺍﻮﺗ ﯽﻣ ﻪﮐ ﺪﯿﺘﻓﺮ

:ﻢﯿﻨﮐ ﯽﻣ ﻩﺩﺎﻔﺘﺳﺍ CSS ﻭ HTML ﺕﺍﺮﻈﻧ ﺐﯿﮐﺮﺗ ﺯﺍ ﺮﯾﺯ ﻝﺎﺜﻣ ﺭﺩ

ﻝﺎﺜﻣ

 <!DOCTYPE html>
<html>
<head>
<style>
p {
  color: red; /* Set 
  text color to red */
} 
</style>
</head>
<body>
<h2>My 
  Heading</h2>
<!-- These paragraphs will be red -->
<p>Hello 
  World!</p>
<p>This paragraph is styled with CSS.</p>
<p>CSS comments are 
  not shown in the output.</p>
</body>
</html>

→ ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ

<!DOCTYPE html>
<html>
<head>
<style>
p {
  color: red; /* Set text color to red */
}
</style>
</head>
<body>

<h2>My Heading</h2>

<!-- These paragraphs will be red -->
<p>Hello World!</p>
<p>This paragraph is styled with CSS.</p>
<p>HTML and CSS comments are not shown in the output.</p>

</body>
</html>