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