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