I have the script which has the two steps and I want to align the text for example:
Step1 : I am a boy........
my name is Ram```
But I want to align the text as
Step1 : I am a boy........
my name is Ram```
I tried text-align and align attribute to span.
p.steps {
color: #000;
margin-bottom: 10px;
font-size: 20px;
font-weight: normal;
font-family: 'Montserrat';
line-height: 1.2;
margin-top: 20px;
text-align: left;
}
<p class="steps"> <span style="color:#BB2812">Step1 : </span> I am a boy................. my name is Ram</p>
<p class="steps"> <span style="color:#BB2812">Step2 : </span> There are many countries but I live in Australia </p>