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