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