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