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