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