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