HTML Paragraph Tag

  • Post category:CSS

Get the code of HTML Paragraph Tag and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<p class="one">I am black.</p>
<p class="two">I am red.</p>
<p class="three">I am blue.</p>
.two {
  color: red;
}
.three {
  color: blue;
}