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