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