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