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