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