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