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