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