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