Answers for "css paragraph"

1

center p html

<p style="text-align: center">this is centered</p>
Posted by: Guest on August-21-2020
17

text color css

.class {
  color: white;
}
Posted by: Guest on December-15-2020
1

html p

<p>Paragraph text.</p>
Posted by: Guest on July-17-2020
0

how to style individual paragraphs in css

/* This is the reference to style the above code of html in css*/

#one{
    font-family: 'Impact';
    color: red;
    font-size: 25px;
}
#two{
    font-family: 'Times New Roman';
    color: blue;
    font-size: 50px;
}
.three{
    font-family: 'Impact';
    color: red;
    font-size: 25px;
}
.four{
    font-family: 'Times New Roman';
    color: blue;
    font-size: 50px;
}
Posted by: Guest on April-26-2020

Browse Popular Code Answers by Language