A Pen by Kenzie Academy Brasil on CodePen.
Created
June 23, 2021 17:25
-
-
Save Cluaz/abe66daf67ce574a9a744bbe0248fc56 to your computer and use it in GitHub Desktop.
exercicio02-css-basico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<title>Treino Fontes</title> | |
<!--Realizar a importacao de pelo menos 2 fontes--> | |
</head> | |
<body> | |
<div class="content"> | |
<h1 class="phrase1">Utilize uma fonte importada para este título</h1> | |
<h2 class="phrase2">"Lorem ipsum é um texto de espaço reservado comumente usado nas indústrias gráfica, de impressão e de publicação para visualizar layouts e maquetes visuais".</h2> | |
<h3 class="phrase3">"Ja acabou?<br>Agora que eu estava me divertindo"</h3> | |
<p>Kenzie Academy</p> | |
</div> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.phrase1 { | |
font-family: /* Utilize uma das suas fontes importadas */; | |
font-size: /* Deixe o titulo ainda maior */ ; | |
color: /* Utilize uma rgb ou hexadecimal */; | |
text-align: /* Alinhe o texto ao centro */; | |
} | |
.phrase2 { | |
font-family: /* Escolha uma fonte sem serifa */ ; | |
font-weight: /* Deixe o texto em negrito */ ; | |
font-style: /* Coloque em itálico */ ; | |
color: ; | |
} | |
h3 { | |
/* Utilize uma outra fonte importada */ | |
/* Coloque uma fonte de 2.5rem */ | |
/* Utilize um font-weight de */ | |
/* Alinhe o texto a direita */ | |
} | |
p { | |
font-size: ; | |
font-weight: ; | |
color: ; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment