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