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