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