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