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