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