Questions about HTML/CSS - Spotify Page

Asked

Viewed 79 times

-1

I’m recreating the Home of Spotify following a course I picked up on the Net and while continuing alone the rest of the site that in the course had not yet, there are parts in which I’m having difficulties.

I marked in red the part where I don’t know how to do it (/month)

inserir a descrição da imagem aqui

  • 1

    welcome, avoid in the questions put "good afternoon", "I am learning", etc.. be very direct, the concept here is question/answer.

1 answer

1

A very simple way, using basically HTML elements 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>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.