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