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