Check out example codes for "how to style individual paragraphs in css". It will help you in understanding the concepts better.
Code Example 1
/* 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;
}
Code Example 2
<!--This is an example of html problem-->
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="test.css">
</head>
<body>
<p id="one"><p>Paragraph 1</p>
<p id="two"><p>Paragraph 2</p>
<p class="three">Paragraph 3</p>
<p class="four">Paragraph 4</p>
</body>
</html>
Learn ReactJs, React Native from akashmittal.com