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