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