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