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