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