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