Answers for "how to style all paragraphs in the css"

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
-1

arranging the paragraph in css

center of para
Posted by: Guest on August-17-2020

Code answers related to "how to style all paragraphs in the css"

Browse Popular Code Answers by Language