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