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