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