Answers for "default html fonts"

0

use font on website html

<style type="text/css">
@font-face {
    font-family: "My Custom Font";
    src: url(http://www.example.org/mycustomfont.ttf) format("truetype");
}
p.customfont { 
    font-family: "My Custom Font", Verdana, Tahoma;
}
</style>
<p class="customfont">Hello world!</p>
Posted by: Guest on October-05-2020
9

css font family

p{
    font-family:garamond,serif;
}
Posted by: Guest on February-23-2020
2

css font families

p {
  font-family: "Times New Roman", Times, serif;
}
Posted by: Guest on March-13-2020

Browse Popular Code Answers by Language