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