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