Use on the webTotal Use [ 5883 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/25b3ba5a26b56b03812f1f78b29a0c5b?family=PortlandRoman" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/25b3ba5a26b56b03812f1f78b29a0c5b?family=PortlandRoman);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "PortlandRoman";
src: url("https://db.onlinewebfonts.com/t/25b3ba5a26b56b03812f1f78b29a0c5b.eot");
src: url("https://db.onlinewebfonts.com/t/25b3ba5a26b56b03812f1f78b29a0c5b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/25b3ba5a26b56b03812f1f78b29a0c5b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/25b3ba5a26b56b03812f1f78b29a0c5b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/25b3ba5a26b56b03812f1f78b29a0c5b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/25b3ba5a26b56b03812f1f78b29a0c5b.svg#PortlandRoman")format("svg");
}
2CSS rules to specify fonts
font-family: "PortlandRoman";