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