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