Check out example codes for "how to make a class in html". It will help you in understanding the concepts better.
Code Example 1
.myclass {
border:1px solid black;
background-color: #d2d2d2;
height:20px;
width:60px;
}
/*If you give this class to a div in html, it will get the styles you gave
to that class. You can add multiple classes to a div, and multiple divs
can get that class. */
/* I hope I helped! */
Code Example 2
<p class="ClassExample">ClassExample!!</p>
Code Example 3
<p class="ThisIsAClassName">HI</p>
Code Example 4
<!-- in the head element -->
<style> h1 { color:blue; } </style>
<!-- in the body element -->
<h1> text in blue because all "h1" element is in blue </h1>
Code Example 5
<h1 class="write a name">H1 content</h1>
Code Example 6
<ul class="legend">
<li><span class="greendot"></span>Text</li><br></br>
<li><span class="yellowdot"></span>Text</li><br></br>
<li><span class="reddot"></span>Text</li><br></br>
<li><span class="blackdot"></span>Text</li><br></br>
</ul>
Learn ReactJs, React Native from akashmittal.com