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