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