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