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