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