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