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