Use on the webTotal Use [ 4635 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/53785676473111ce9b5d811510933edc?family=Portland+S+Demo" 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/53785676473111ce9b5d811510933edc?family=Portland+S+Demo);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Portland S Demo";
src: url("https://db.onlinewebfonts.com/t/53785676473111ce9b5d811510933edc.eot");
src: url("https://db.onlinewebfonts.com/t/53785676473111ce9b5d811510933edc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/53785676473111ce9b5d811510933edc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/53785676473111ce9b5d811510933edc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/53785676473111ce9b5d811510933edc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/53785676473111ce9b5d811510933edc.svg#Portland S Demo")format("svg");
}
2CSS rules to specify fonts
font-family: "Portland S Demo";