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