<P>CSS can be used to format your text. In HTML the <P> tag is used to add paragraphs. We can use the P selector in CSS to customise the look and feel of our paragraphs. Text alignment, Font types, font sizes, colour, line spacing, letter spacing, padding and margins can be applied using a range of CSS properties.</P>
<P>Check this CSS code and edit some of the properties to investigate their impact on the formatting of these two paragraphs. Once you have found a style you like copy the CSS code onto your own webpage or CSS style sheet.</P>
P {
font-family: "trebuchet MS";
color: #222222;
font-size: 12pt;
text-align: justify;
line-height: 28px;
padding: 10px;
margin-top: 10px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.