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