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