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