Hi,
i want to use font-family with div so i don’t have to change each line or paragraph font-family every time
You could make all your paragraphs have the same font by adding this CSS:
p {
font-family: verdana, arial, sans-serif;
}
To make everything inside a div use the same font, use a class:
<style>
.myFont {
font-family: verdana, arial, sans-serif;
}
</style>
<div class="myFont">
...
</div>