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