ﺪﻨﻧﺍﻮﺗ ﯽﻣ ﺎﻣﺍ ،ﺪﻧﻮﺷ ﯽﻤﻧ ﻩﺩﺍﺩ ﺶﯾﺎﻤﻧ ﺮﮔﺭﻭﺮﻣ ﺭﺩ CSS ﺕﺍﺮﻈﻧ
.ﺪﻨﮐ ﮏﻤﮐ ﺪﯿﻨﮐ ﺶﯾﺍﺮﯾﻭ ﯼﺮﮕﯾﺩ ﺦﯾﺭﺎﺗ ﺭﺩ ﺍﺭ ﻊﺒﻨﻣ ﺪﮐ ﻪﮐ ﯽﻧﺎﻣﺯ ﺭﺩ ﺖﺳﺍ ﻦﮑﻤﻣ ﻭ ﺩﻮﺷ ﯽﻣ ﻩ
.ﺪﻧﻮﺷ ﯽﻣ ﻪﺘﻓﺮﮔ ﻩﺪﯾﺩﺎﻧ ﺎﻫﺮﮔﺭﻭﺮﻣ ﻂﺳﻮﺗ ﺕﺍﺮﻈﻧ
: → ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ :ﺪﯿﻨﮐ ﻪﻓﺎﺿﺍ ﺪﮐ ﺭﺩ ﺪﯿﻫﺍﻮﺧ ﯽﻣ ﻪﮐ ﺎﺠﮐ ﺮﻫ ﺭﺩ ﺍﺭ ﺩﻮﺧ ﺕﺍﺮﻈﻧ ﺪﯿﻧﺍﻮﺗ ﯽﻣ ﺎﻤﺷ → ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ ﺪﻧﻮﺷ ﻩﺩﺮﺘﺴﮔ ﺪﻨﻧﺍﻮﺗ ﯽﻣ ﻦﯿﻨﭽﻤﻫ ﺕﺍﺮﻈﻧ → ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ ﺪﯿﻨﮐ ﻪﻓﺎﺿﺍ ﺩﻮﺧ HTML ﻊﺒﻨﻣ ﻪﺑ HTML ﺯﺍ ﻩﺩﺎﻔﺘﺳﺍ ﺎﺑ ﺍﺭ ﺩﻮﺧ ﺕﺍﺮﻈﻧ ﺪﯿﻧﺍﻮﺗ ﯽﻣ ﻪﮐ ﺪﯿﺘﻓﺮ :ﻢﯿﻨﮐ ﯽﻣ ﻩﺩﺎﻔﺘﺳﺍ CSS ﻭ HTML ﺕﺍﺮﻈﻧ ﺐﯿﮐﺮﺗ ﺯﺍ ﺮﯾﺯ ﻝﺎﺜﻣ ﺭﺩ → ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ ﻝﺎﺜﻣ
/* 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 ﺕﺍﺮﻈﻧ
ﻝﺎﺜﻣ
<!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>