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