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