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