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