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