how to style css class code example
Example 1: how to create a css class
<style>
.myclass { /* CLASS CREATED */
background-color: transparent;
height:50px;
width:50px;
}
</style>
<body>
<div class="myclass"></div>
<body>
Example 2: best way to write css class name
.stick_man__head {