How to use CSS to change the font family in HTML
To change the font family in the HTML with CSS added the following content to your code,
.font2{
font-family: "Comic Sans MS";
}
The same goes for different fonts,
<div class="container">
<p class="font1">Hello world</p>
<p class="font2">Hello...
h.dhairyashah.dev1 min read