Questions about HTML / CSS - Spotify Page

-1

I'm recreating Spotify's Home by following a course I took on the Net and by continuing alone the rest of the site I did not yet have in the course, there are parts where I'm experiencing difficulties.

I marked in red in the image the part that I do not know how to do (/ month)

    
asked by anonymous 01.03.2017 / 20:15

1 answer

1

A very simple way, using basically the elements of HTML is to use the tag sub .

span {
  font-weight: bold;
  color: white;
  background-color: Indigo;
  padding: 10px;
}

span sub {
  font-weight: normal;
  color: SkyBlue;
}
<span>R$0,00<sub>/mês</sub></span>
    
01.03.2017 / 20:23