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