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