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