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