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