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