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