+ 3
How to change fonts or style of words in html
4 Respuestas
+ 4
p{
font-style:italic
}
+ 4
/* Change the styling */
p{
font-family: #;
font-size: #;
font-style: #;
font-variant: #;
font-weight: #;
}
To import a google font you will need to use the @font-face in your css file.
0
Use font-family property
0
you can use inline CSS like
<p style="font-size:5px">Earth
</p>
or in your separate CSS file(file_name.CSS) that you linked to your html file like
p{
font-size:5px;
}
like font-size you can use different font-style go for that whatever you need.