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