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