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