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