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