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