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