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