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