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