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